@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@500;700&display=swap");
/*--------------------------
 ブレークポイント設定
----------------------------*/
.uk-link-toggle:focus .uk-link, .uk-link-toggle:hover .uk-link, .uk-link:hover, a:hover {
  color: #000;
  text-decoration: none;
}

:focus {
  outline: none;
}

/*--------------------------
 変数
----------------------------*/
/*--------------------------
 共通設定
----------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px !important;
  color: #333;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
}
body img {
  width: 100%;
  height: auto;
}

/* リンク img ------*/
a img {
  transition: all 0.5s ease 0s;
}
@media (min-width: 960px) and (min-width: 960px) {
  a:hover {
    text-decoration: none;
    filter: brightness(110%);
  }
}
@media (min-width: 960px) {
  a:hover img {
    transition: all 0.5s ease 0s;
    opacity: 0.7;
  }
}

/* PC時tel無効 ------*/
@media (max-width: 1200px) {
  .uk-hidden-xlarge {
    display: none !important;
  }
}

.uk-visible-xlarge {
  display: none;
}
@media (max-width: 1200px) {
  .uk-visible-xlarge {
    display: block !important;
  }
}

/* --- スマホ縦　非表示　--- */
@media (max-width: 640px) {
  .uk-hidden-xs {
    display: none !important;
  }
}
/* --- スマホ縦のみ表示　--- */
@media (min-width: 480px) {
  .uk-visible-xs {
    display: none !important;
  }
}
@media (max-width: 640px) {
  .uk-visible-xs {
    display: block !important;
  }
}
/*--------------------------
    中央配置
----------------------------*/
/* 上下左右中央配置 */
/* 上下のみ中央配置 */
/* 左右のみ中央配置 */
/* 中央配置解除 */
/* margin auto */
/*--------------------------
 ヘッダー
----------------------------*/
header {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px 0px 50px;
  position: fixed;
  left: 0px;
  right: 0px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.3);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
@media (max-width: 767px) {
  header {
    padding: 0px 0px 10px 5px;
  }
}
header h1 {
  font-size: 24px;
  color: #333;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px auto 0px 0px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  header h1 {
    font-size: 14px;
  }
}
header h1 span.inner {
  display: block;
}
header h1 span.tagline {
  display: block;
  font-size: 20px;
}
header h1::before {
  content: "";
  display: block;
  width: 90px;
  height: 90px;
  background: url(../img/common/siteid.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
}
@media (max-width: 767px) {
  header h1::before {
    width: 50px;
    height: 50px;
    margin-top: 0px;
    margin-right: 7px;
  }
}
header .telBox {
  background: #59c3e1;
  padding: 15px 20px 15px 35px;
  border-radius: 0px 0px 0px 50px;
}
@media (max-width: 767px) {
  header .telBox {
    display: none;
  }
}
header .telBox__inner {
  display: flex;
  color: #fff;
}
header .telBox__inner__name {
  margin-right: 10px;
}
header .telBox__inner__icon {
  margin-right: 5px;
}
header .telBox__inner__icon img {
  width: 24px;
  height: auto;
}
header .telBox__inner__data .telBox__telNo {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px !important;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
header .telBox__inner__data .telBox__note {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-top: 5px;
}

/* スマホ用電話番号 */
.telBox_sp {
  display: none;
}
@media (max-width: 767px) {
  .telBox_sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    bottom: 0px;
    background: #59c3e1;
    padding: 15px 5px;
    color: #fff;
    z-index: 1000;
  }
  .telBox_sp__inner {
    width: 48%;
    text-align: center;
  }
  .telBox_sp__inner p {
    font-size: 14px;
    line-height: 1;
    margin: 0px 0px 10px 0px;
    padding: 0px;
  }
  .telBox_sp__telNo {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    display: flex;
  }
  .telBox_sp__telNo::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: url(../img/common/icon_tel.svg) no-repeat center center;
    background-size: contain;
    margin-right: 5px;
  }
  .telBox_sp__telNo a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  .telBox_sp__note {
    display: block;
    font-size: 12px;
    line-height: 1;
  }
}

/*--------------------------
 メイン
----------------------------*/
main {
  padding-top: 150px;
}
@media (max-width: 767px) {
  main {
    padding-top: 75px;
    width: 100%;
  }
}

/*--------------------------
 メインビジュアル
----------------------------*/
.mv {
  width: 90%;
  background: url(../img/top/mv.jpg) no-repeat center center;
  background-size: cover;
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0px 0px 30px rgba(44, 154, 0, 0.9);
  height: 700px;
  border-radius: 15px;
  position: relative;
  margin: 0px auto 100px auto !important;
}
@media (max-width: 767px) {
  .mv {
    width: 95%;
    background: url(../img/top/mv.jpg) no-repeat left 30% center;
    background-size: 200%;
    height: 350px;
    font-size: 28px;
    text-shadow: 0px 0px 10px rgba(44, 154, 0, 0.8);
    margin: 0px auto 35px auto !important;
  }
}
.mv p {
  display: inline-block;
  text-align: left;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 75px;
}
@media (max-width: 767px) {
  .mv p {
    right: 25px;
    text-align: right;
  }
}

/*--------------------------
 コンテンツ共通
----------------------------*/
.contsBlock h2 {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #59c3e1;
  line-height: 1.2;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .contsBlock h2 {
    font-size: 14px;
    margin-bottom: 35px;
  }
}
.contsBlock h2 span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 60px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contsBlock h2 span {
    font-size: 42px;
  }
}
.contsBlock h3 {
  font-size: 21px;
  font-weight: 700;
  color: #333;
  border-left: 5px solid #59c3e1;
  padding-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .contsBlock h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.contsBlock p {
  line-height: 2;
}
@media (max-width: 767px) {
  .contsBlock p {
    font-size: 14px;
  }
}
.contsBlock p.catch {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contsBlock p.catch {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.contsBlock.about {
  background: url(../img/top/bg_about.jpg) no-repeat right bottom;
  background-size: 750px;
  padding-bottom: 250px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.about {
    padding-bottom: 200px;
    background-size: 150%;
    margin-bottom: 75px;
  }
}
.contsBlock.about .about__inner {
  width: 75%;
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.about .about__inner {
    padding-left: 0px;
    width: 100%;
  }
}
.contsBlock.concept {
  margin-bottom: 125px;
  position: relative;
  padding-bottom: 100px;
}
.contsBlock.concept::before {
  content: "";
  display: block;
  background: #E3FAFE;
  width: 90%;
  max-width: 1200px;
  height: 300px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0px;
  z-index: -1;
}
.contsBlock.concept .concept__inner {
  padding-left: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contsBlock.concept .concept__inner__img {
  width: 40%;
}
.contsBlock.concept .concept__inner__img img {
  border-radius: 15px;
}
.contsBlock.concept .concept__inner__note {
  width: 50%;
}
.contsBlock.target {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.target {
    margin-bottom: 50px;
  }
}
.contsBlock.target ul li {
  margin-bottom: 7px;
  font-size: 14px;
}
.contsBlock.target .target__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.target .target__inner {
    padding-left: 0px;
  }
}
.contsBlock.target .target__inner ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contsBlock.target .target__inner ul li {
  width: 270px;
  height: 270px;
  margin: 0px 25px 25px 15px;
  border: 2px solid #59c3e1;
  color: #59c3e1;
  border-radius: 50%;
  list-style: none;
  position: relative;
  font-size: 24px;
}
@media (max-width: 767px) {
  .contsBlock.target .target__inner ul li {
    width: 135px;
    height: 135px;
    font-size: 16px;
    margin: 0px 10px 10px 10px;
  }
}
.contsBlock.target .target__inner ul li span {
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.contsBlock.work {
  background: #dff2fc;
  padding: 100px 0px 50px 0px;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.work {
    padding: 50px 0px 50px 0px;
    margin-bottom: 50px;
  }
}
.contsBlock.work .work__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.work .work__inner {
    padding-left: 10px;
  }
}
.contsBlock.work .work__list {
  padding-top: 50px;
}
@media (max-width: 767px) {
  .contsBlock.work .work__list {
    padding-top: 25px;
  }
}
.contsBlock.work .work__list__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contsBlock.work .work__list__inner .work__Data {
  width: 45%;
  margin: 0px 0px 35px 0px;
  text-align: center;
}
@media (max-width: 767px) {
  .contsBlock.work .work__list__inner .work__Data {
    margin: 0px 0px 10px 0px;
  }
}
.contsBlock.work .work__list__inner .work__Data p {
  margin: 0px auto 5px auto;
}
@media (max-width: 767px) {
  .contsBlock.work .work__list__inner .work__Data p {
    margin: 0px auto 5px auto;
  }
}
.contsBlock.work .work__list__inner .work__Data p strong {
  font-size: 110%;
}
.contsBlock.work .work__list__inner .work__Data img {
  border-radius: 15px;
}
.contsBlock.work dl dt {
  font-size: 20px;
  color: #59c3e1;
  margin-bottom: 10px;
}
.contsBlock.work dl dd {
  margin-bottom: 35px;
}
.contsBlock.work .program {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .contsBlock.work .program {
    padding: 15px;
    border-radius: 10px;
  }
}
.contsBlock.work .program table {
  width: 100%;
  border-spacing: 0;
  border-left: 1px solid #A9A9A9;
  border-top: 1px solid #A9A9A9;
}
.contsBlock.work .program table th,
.contsBlock.work .program table td {
  border-right: 1px solid #A9A9A9;
  border-bottom: 1px solid #A9A9A9;
  padding: 10px 5px;
  text-align: center;
  font-weight: normal;
}
@media (max-width: 767px) {
  .contsBlock.work .program table th,
  .contsBlock.work .program table td {
    padding: 5px 2px;
    font-size: 12px;
  }
}
.contsBlock.work .program table th {
  background: #f5f5f5;
  white-space: nowrap;
}
.contsBlock.routine {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.routine {
    margin-bottom: 50px;
  }
}
.contsBlock.routine .routine__head {
  padding-left: 50px;
  box-sizing: border-box;
  margin-bottom: 65px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__head {
    padding-left: 10px;
    margin-bottom: 30px;
  }
}
.contsBlock.routine .routine__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner {
    padding-left: 10px;
    flex-wrap: wrap;
  }
}
.contsBlock.routine .routine__inner__timeline {
  width: 50%;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline {
    width: 100%;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline {
  list-style: none;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline {
    padding-left: 10px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contsBlock.routine .routine__inner__timeline .timeline li p {
  margin: 0px;
}
.contsBlock.routine .routine__inner__timeline .timeline li p.timeline-date {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 24px;
  display: block;
  width: 120px;
  line-height: 1;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li p.timeline-date {
    font-size: 20px;
    width: 70px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-content {
  border-left: 2px solid #D9D9D9;
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-content::before {
  content: "●";
  display: inline-block;
  color: #59c3e1;
  margin-right: 30px;
  font-size: 14px;
  margin-left: -0.5rem;
  line-height: 1;
  vertical-align: text-top;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li .timeline-content::before {
    margin-right: 5px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-content p {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  width: 300px;
  padding: 20px 30px;
  box-sizing: border-box;
  background: #59c3e1;
  border-radius: 50px;
  margin: 20px 0px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li .timeline-content p {
    font-size: 16px;
    width: 210px;
    padding: 15px 15px;
    margin: 5px 0px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList {
  border-left: 2px solid #D9D9D9;
  width: 300px;
  margin-left: 120px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList {
    margin-left: 70px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList ul {
  padding-left: 100px;
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList ul {
    padding-left: 65px;
  }
}
.contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList ul li {
  display: list-item;
  font-size: 18px;
  margin: 15px 0px;
  list-style: circle !important;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__timeline .timeline li .timeline-workList ul li {
    font-size: 16px;
    margin: 10px 0px;
  }
}
.contsBlock.routine .routine__inner__pht {
  width: 45%;
}
@media (max-width: 767px) {
  .contsBlock.routine .routine__inner__pht {
    width: 70%;
    margin: 0px auto;
  }
}
.contsBlock.routine .routine__inner__pht img {
  border-radius: 15px;
}
.contsBlock.flow {
  width: 90%;
  margin: 0px auto 100px auto;
  background: #dff2fc;
  background-size: cover;
  padding: 100px 0px 50px 0px;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .contsBlock.flow {
    width: 95%;
    margin: 0px auto 50px auto;
    padding: 50px 0px 50px 0px;
  }
}
.contsBlock.flow .flow__inner {
  display: flex;
  flex-wrap: wrap;
}
.contsBlock.flow .flow__inner .stepBox {
  width: calc(33% - 50px);
  background: #fff;
  padding: 0px 25px 25px 25px;
  box-sizing: border-box;
  border-radius: 15px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contsBlock.flow .flow__inner .stepBox {
    width: 90%;
    margin: 0px auto 10px auto;
    padding: 0px 15px 10px 15px;
  }
}
.contsBlock.flow .flow__inner .stepBox__head {
  text-align: center;
}
.contsBlock.flow .flow__inner .stepBox__head__No {
  background: #59c3e1;
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  padding: 15px 10px;
  border-radius: 0px 0px 7px 7px;
  margin-bottom: 25px;
}
.contsBlock.flow .flow__inner .stepBox__head__No span {
  display: block;
  font-size: 42px;
  padding: 0px 10px;
}
.contsBlock.flow .flow__inner .stepBox__head h3 {
  display: block;
  width: 100%;
  margin: 0px auto;
  padding: 0px;
  border: none;
  font-size: 21px;
  text-align: center;
}
.contsBlock.flow .flow__inner .stepBox__head h3::after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  background: #D9D9D9;
  margin: 20px auto;
}
.contsBlock.flow .flow__inner .stepBox__body {
  text-align: center;
}
.contsBlock.flow .flow__inner .stepBox__body p {
  line-height: 1.5;
}
.contsBlock.flow .flow__inner .stepBox__body p.telNo {
  display: inline-block;
  margin: 0px auto;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
}
.contsBlock.flow .flow__inner .stepBox__body p.telNo span {
  display: flex;
  align-items: center;
}
.contsBlock.flow .flow__inner .stepBox__body p.telNo span::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background: url(../img/top/flow_icon_tel.svg) no-repeat center center;
  background-size: cover;
}
.contsBlock.flow .flow__inner .stepBox__body p.icon {
  text-align: center;
}
.contsBlock.flow .flow__inner .stepBox__body p.icon img {
  height: 100px;
  width: auto;
}
@media (max-width: 767px) {
  .contsBlock.flow .flow__inner .stepBox__body p.icon img {
    height: 80px;
    width: auto;
  }
}
.contsBlock.flow .flow__inner .stepBox__body p.icon img.bigImg {
  height: 150px;
  width: auto;
}
@media (max-width: 767px) {
  .contsBlock.flow .flow__inner .stepBox__body p.icon img.bigImg {
    height: 80px;
    width: auto;
  }
}
.contsBlock.flow .flow__inner .stepArrow {
  width: 50px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .contsBlock.flow .flow__inner .stepArrow {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contsBlock.flow .flow__inner .stepArrow img {
  width: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media (max-width: 767px) {
  .contsBlock.flow .flow__inner .stepArrow img {
    position: absolute;
    left: auto;
    top: auto;
    transform: translate(0, 0);
    position: initial;
    transform: rotate(90deg);
  }
}
.contsBlock.price {
  margin-bottom: 125px;
}
@media (max-width: 767px) {
  .contsBlock.price {
    margin-bottom: 50px;
  }
}
.contsBlock.price .price__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.price .price__inner {
    padding-left: 10px;
  }
}
.contsBlock.price .price__inner .priceList {
  margin-top: 75px;
  display: flex;
}
@media (max-width: 767px) {
  .contsBlock.price .price__inner .priceList {
    margin-top: 35px;
    flex-wrap: wrap;
  }
}
.contsBlock.price .price__inner .priceList__data {
  width: 33%;
  border-left: 1px solid #ccc;
  text-align: center;
  padding: 20px 5px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.price .price__inner .priceList__data {
    width: 80%;
    border-left: none;
    border-top: 1px solid #ccc;
    margin: 0px auto;
  }
}
.contsBlock.price .price__inner .priceList__data:last-child {
  border-right: 1px solid #ccc;
}
@media (max-width: 767px) {
  .contsBlock.price .price__inner .priceList__data:last-child {
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}
.contsBlock.price .price__inner .priceList__data p {
  margin: 0px auto;
  font-size: 18px;
}
.contsBlock.price .price__inner .priceList__data p::after {
  content: "";
  display: block;
  width: 75px;
  height: 2px;
  background: #D9D9D9;
  margin: 15px auto;
}
.contsBlock.price .price__inner .priceList__data dl {
  margin: 0px;
  padding: 0px;
}
.contsBlock.price .price__inner .priceList__data dl dt {
  font-size: 16px;
  color: #59c3e1;
}
.contsBlock.price .price__inner .priceList__data dl dd {
  font-size: 60px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #59c3e1;
}
@media (max-width: 767px) {
  .contsBlock.price .price__inner .priceList__data dl dd {
    font-size: 30px;
  }
}
.contsBlock.price .price__inner .priceList__data dl dd span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
.contsBlock.availability {
  margin-bottom: 100px;
}
.contsBlock.availability .availability__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
.contsBlock.availability .availability__inner table {
  width: 100%;
}
.contsBlock.availability .availability__inner table th {
  color: #fff;
  padding: 5px 0px;
}
.contsBlock.availability .availability__inner table th:nth-child(odd) {
  background: #007998;
}
.contsBlock.availability .availability__inner table th:nth-child(even) {
  background: #00987C;
}
.contsBlock.availability .availability__inner table td {
  font-size: 50px;
  padding: 50px 0px;
  box-sizing: border-box;
  text-align: center;
  color: #124074;
}
.contsBlock.availability .availability__inner table td:nth-child(odd) {
  background: #D0E8EE;
}
.contsBlock.availability .availability__inner table td:nth-child(even) {
  background: #D0EEDF;
}
.contsBlock.lunch {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.lunch {
    margin-bottom: 50px;
  }
}
.contsBlock.lunch .lunch__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.lunch .lunch__inner {
    padding-left: 10px;
  }
}
.contsBlock.lunch .lunch__inner__pht {
  display: flex;
  justify-content: space-between;
}
.contsBlock.lunch .lunch__inner__pht div {
  width: 45%;
}
.contsBlock.lunch .lunch__inner__pht div img {
  border-radius: 15px;
}
.contsBlock.faq {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .contsBlock.faq {
    margin-bottom: 5px;
  }
}
.contsBlock.faq .faq__inner {
  padding-left: 50px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .contsBlock.faq .faq__inner {
    padding-left: 10px;
  }
}
.contsBlock.faq .faq__inner dl dt {
  display: flex;
  align-items: center;
}
.contsBlock.faq .faq__inner dl dt::before {
  content: "Q";
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #48b24b;
  border-radius: 50%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .contsBlock.faq .faq__inner dl dt::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    flex-shrink: 0;
  }
}
.contsBlock.faq .faq__inner dl dd {
  display: flex;
  align-items: center;
  padding: 15px 0px 50px 35px;
}
@media (max-width: 767px) {
  .contsBlock.faq .faq__inner dl dd {
    padding: 10px 0px 30px 25px;
    font-size: 14px;
  }
}
.contsBlock.faq .faq__inner dl dd::before {
  content: "A";
  display: block;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  background: #f39700;
  border-radius: 50%;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .contsBlock.faq .faq__inner dl dd::before {
    width: 30px;
    height: 30px;
    font-size: 20px;
    flex-shrink: 0;
  }
}
.contsBlock.access {
  margin-bottom: 100px;
}
.contsBlock.access .uk-container {
  position: relative;
}
@media (max-width: 767px) {
  .contsBlock.access {
    margin-bottom: 50px;
  }
}
.contsBlock.access .access_ribbon {
  position: absolute;
  top: 0px;
  right: 0px;
}
@media (max-width: 767px) {
  .contsBlock.access .access_ribbon {
    position: inherit;
    margin-bottom: 25px;
  }
}
.contsBlock.access .access_ribbon span {
  display: inline-block;
  padding: 10px 20px;
  background: #59c3e1;
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .contsBlock.access .access_ribbon span {
    padding: 10px 15px;
    font-size: 16px;
  }
}
.contsBlock.access .access__inner {
  padding-left: 50px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contsBlock.access .access__inner {
    padding-left: 0px;
    flex-wrap: wrap;
  }
}
.contsBlock.access .access__inner__box {
  width: 48%;
}
@media (max-width: 767px) {
  .contsBlock.access .access__inner__box {
    width: 100%;
  }
  .contsBlock.access .access__inner__box:first-child {
    margin-bottom: 50px;
  }
}
.contsBlock.access .access__inner__box p {
  margin: 0px 0px 10px 0px !important;
  padding: 0px;
  line-height: 1.3;
}
.contsBlock.access .access__inner__box p strong {
  font-size: 20px;
}
.contsBlock.access .access__inner .gMap {
  width: 100%;
  height: 500px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .contsBlock.access .access__inner .gMap {
    height: 350px;
  }
}
.contsBlock.access .access__inner .gMap iframe {
  width: 100%;
  height: 100%;
}
.contsBlock.system {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.system {
    margin-bottom: 50px;
  }
}
.contsBlock.system .uk-container {
  position: relative;
}
.contsBlock.system .system__inner {
  padding-left: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .contsBlock.system .system__inner {
    padding-left: 0px;
  }
}
.contsBlock.system .system__inner .catch {
  width: 100%;
}
.contsBlock.system .system__conts {
  width: calc(50% - 15px);
  border: 1px solid #59c3e1;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contsBlock.system .system__conts {
    border-radius: 15px;
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
  }
  .contsBlock.system .system__conts h3 {
    margin-bottom: 7px;
  }
  .contsBlock.system .system__conts p {
    margin: 0px;
  }
}
.contsBlock.company {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .contsBlock.company {
    margin-bottom: 50px;
  }
}
.contsBlock.company .uk-container {
  position: relative;
}
.contsBlock.company .company__inner {
  height: 500px;
  background: #f5f5f5;
}

/*--------------------------
 問い合わせ
----------------------------*/
.contact {
  background: #59c3e1;
  position: relative;
  padding: 75px 0px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact {
    padding: 50px 0px 50px 0px;
  }
}
.contact__inner {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .contact__inner {
    flex-wrap: wrap;
  }
}
.contact h2 {
  display: inline-block;
  padding: 10px 35px;
  background: #fff;
  color: #59c3e1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .contact h2 {
    margin: 0px auto;
  }
}
.contact p {
  font-size: 32px;
  color: #fff;
}
@media (max-width: 767px) {
  .contact p {
    font-size: 20px;
  }
}
.contact .contact__tel {
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 0px 50px;
}
@media (max-width: 767px) {
  .contact .contact__tel {
    width: 100%;
    margin: 0px 0px;
  }
}
.contact .contact__tel h3 {
  color: #fff;
}
@media (max-width: 767px) {
  .contact .contact__tel h3 {
    margin-bottom: 5px;
  }
}
.contact .contact__tel p {
  margin: 0px auto;
  padding: 0px;
}
.contact .contact__tel p.contact__tel__no {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact__tel p.contact__tel__no a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact .contact__tel p.contact__tel__no {
    font-size: 40px;
  }
}
.contact .contact__tel p.contact__tel__no::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url(../img/common/icon_tel.svg) no-repeat center center;
  background-size: cover;
  vertical-align: text-bottom;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contact .contact__tel p.contact__tel__no::before {
    width: 35px;
    height: 35px;
  }
}
.contact .contact__tel p.contact__tel__note {
  font-size: 16px;
  line-height: 1;
}
.contact .contact__tel .sns {
  margin: 30px 0px 0px 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  .contact .contact__tel .sns {
    margin: 10px 0px 0px 0px;
  }
}
.contact .contact__tel .sns li {
  list-style: none;
  display: inline-block;
  margin: 0px 10px;
}
.contact .contact__tel .sns li img {
  width: 50px;
  height: auto;
}
.contact .contact__tel:first-child {
  margin-bottom: 35px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0px;
}
@media (max-width: 767px) {
  footer {
    text-align: left;
    flex-wrap: wrap;
    padding: 20px 0px 100px 0px;
  }
}
@media (max-width: 767px) {
  footer .footer__note {
    width: 100%;
  }
}
footer .footer__note h5 {
  color: #777777;
  font-size: 24px;
  margin: 20px 0px 10px 0px;
  padding: 0px;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .footer__note h5 {
    line-height: 1.3;
    margin: 20px 0px 5px 0px;
  }
}
footer .footer__note h5 span {
  font-size: 18px;
}
@media (max-width: 767px) {
  footer .footer__note h5 span {
    display: block;
  }
}
@media (max-width: 767px) {
  footer .footer__note h5 {
    font-size: 18px;
  }
  footer .footer__note h5 span {
    font-size: 14px;
  }
}
footer .footer__note p {
  color: #777777;
  font-size: 14px;
  line-height: 1;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 767px) {
  footer .footer__note p {
    line-height: 1.3;
  }
}
footer .footer__copy {
  font-size: 12px;
  color: #777777;
}
@media (max-width: 767px) {
  footer .footer__copy {
    width: 100%;
    padding-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */