@charset "UTF-8";
/*--------------------------------------------------------------
Foundation
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap");
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, i, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, figure, figcaption,
input, textarea, select, i {
  border: 0;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  line-height: 1.5;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input[type="submit"], button {
  -webkit-appearance: none;
}

body {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.5;
  background: #fff;
  color: #000;
  overflow-y: scroll;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

ul, li {
  list-style: none;
}

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

a:hover,
a:active,
a:focus {
  outline: 0;
}

a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  -webkit-transition-property: opacity, color, background, box-shadow, -webkit-transform;
  transition-property: opacity, color, background, box-shadow, -webkit-transform;
  transition-property: opacity, color, background, transform, box-shadow;
  transition-property: opacity, color, background, transform, box-shadow, -webkit-transform;
  opacity: 1;
  line-height: inherit;
}

img,
input[type="image"] {
  border: 0;
  height: auto;
  max-width: 100%;
}

input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: none;
  width: 100%;
}

strong {
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover,
input[type="image"]:hover {
  opacity: 0.7;
}

p * {
  line-height: inherit;
}

.m_ft {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}

.ft_e {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.evt {
  visibility: hidden;
}

.c_anchor {
  position: absolute;
  width: 100%;
  left: 0;
  margin-top: -14rem;
}

@media screen and (max-width: 767px) {
  .c_anchor {
    margin-top: -8rem;
  }
}

.mask {
  position: relative;
  overflow: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.mask.evt {
  visibility: visible;
}

.mask:before {
  content: '';
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}

.mask.show:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
  }
  30% {
    opacity: .5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3em, 0);
    transform: translate3d(0, 3em, 0);
  }
  30% {
    opacity: .5;
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
.u_wrap {
  overflow: hidden;
}

#max {
  width: 112rem;
}

#maxsp {
  width: 1120px;
}

html.fit {
  font-size: calc(100vw * 10 / 1120);
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 437);
  }
}

.u_clearfix:after,
.u_clearfix > li:after {
  height: 0;
  visibility: hidden;
  content: ".";
  display: block;
  clear: both;
}

* html .u_clearfix,
* html .u_clearfix > li {
  zoom: 1;
}

* + html .u_clearfix,
* + html .u_clearfix li {
  zoom: 1;
}

.u_switch_img {
  opacity: 1;
}

.u_relative {
  position: relative;
}

@media screen and (min-width: 768px) {
  .u_visible_sp {
    display: none;
  }
  .u_tel {
    cursor: default;
  }
  .u_tel:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .u_visible_pc {
    display: none;
  }
  .u_inner {
    width: auto;
    margin: 0 9.5%;
    padding: 0;
  }
  .u_inner.b {
    margin: 0;
  }
}
sup {
  font-size: 1.2rem;
  vertical-align: top;
}

/*--------------------------------------------------------------
Layout/PageBase
--------------------------------------------------------------*/
#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 66;
  height: 14rem;
}

#header a {
  display: block;
}

@media screen and (max-width: 767px) {
  #header {
    height: 8rem;
  }
}

.h_logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.h_logo img {
  width: 15rem;
}

@media screen and (max-width: 767px) {
  .h_logo {
    top: .4rem;
    left: 0;
  }
  .h_logo img {
    width: 10.49rem;
  }
}

.h_nav {
  position: absolute;
  right: 21rem;
  top: 4rem;
}

.h_nav li {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0 .1em;
}

.h_nav li a {
  background: #fff;
  padding: .2em .4em 0;
}

@media screen and (max-width: 767px) {
  .h_nav {
    right: auto;
    left: 12.5rem;
    top: .5rem;
    width: 56%;
  }
  .h_nav li {
    font-size: 1.4rem;
  }
}

.h_croud {
  position: absolute;
  right: 5.4rem;
  top: 3rem;
}

.h_croud img {
  width: 10.4rem;
}

@media screen and (max-width: 767px) {
  .h_croud {
    right: 2rem;
    top: 1.5rem;
  }
  .h_croud img {
    width: 8.9rem;
  }
}

#footer {
  text-align: center;
}

.f_txt {
  font-size: 1.5rem;
  line-height: 2.4;
}

.f_txt02 {
  font-size: 1.2rem;
  line-height: 1.6;
}

.f_info {
  font-size: 1.4rem;
  line-height: 2.14;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 67%;
  text-align: left;
}

.f_info i {
  background: #8dc21f;
  margin-right: .3em;
  padding: 0 .2em;
}

@media screen and (max-width: 767px) {
  .f_info {
    left: 50%;
    font-size: 1.1rem;
    margin-top: -2rem;
  }
  .f_info i {
    color: #fff;
  }
}

.f_bg {
  padding: 13rem 0 12rem;
}

@media screen and (max-width: 767px) {
  .f_bg {
    background: #f2f2f2;
    padding: 5rem 0 3rem;
  }
}

@media screen and (min-width: 768px) {
  .f_bg {
    background: url(../img/f_bg.jpg) no-repeat 50%/cover;
  }
}

.f_img {
  width: 70rem;
  max-width: 100%;
  margin: 8rem auto;
  position: relative;
}

.f_img img {
  width: 19.4rem;
}

@media screen and (max-width: 767px) {
  .f_img {
    margin: 3rem auto;
  }
  .f_img img {
    width: 11rem;
    margin-right: 12rem;
  }
}

.f_copy {
  background: #8dc21f;
  padding: 1.5rem;
  font-size: 1rem;
  color: #fff;
}

/*--------------------------------------------------------------
Project
--------------------------------------------------------------*/
.top_main {
  background: #000000;
  position: relative;
}

.top_main:before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: .4rem;
  background: #000;
  z-index: 10;
}

.top_main:after {
  content: '';
  position: absolute;
  width: 0;
  left: 0;
  top: 0;
  height: .4rem;
  background: #8dc21f;
  z-index: 11;
}

.top_main.show:after {
  width: 100%;
  transition: width 10s linear;
}

.top_main .img {
  height: 100vh;
  background: no-repeat center center / cover;
}

@media screen and (min-width: 768px) {
  .top_main .img {
    min-height: 70rem;
  }
}

.top_main .catch {
  position: absolute;
  top: 20rem;
  left: 50%;
}

.top_main .catch img {
  width: 19.5rem;
}

@media screen and (min-width: 768px) {
  .top_main .catch {
    margin-left: -30rem;
  }
}

@media screen and (max-width: 767px) {
  .top_main .catch {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .top_main .catch img {
    width: 17rem;
  }
}

.top_main p {
  position: absolute;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  bottom: 21rem;
  line-height: 1.4;
  padding: .15em .5em 0;
}

@media screen and (min-width: 768px) {
  .top_main p {
    left: 50%;
    margin-left: 14rem;
  }
}

@media screen and (max-width: 767px) {
  .top_main p {
    font-size: 1.5rem;
    bottom: 12rem;
    right: 0;
  }
}

.c_ttl {
  position: absolute;
}

.c_ttl.a {
  right: 2.5rem;
}

.c_ttl.b {
  left: 2.5rem;
}

.c_ttl i {
  font-size: 1.2rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #8dc21f;
}

@media screen and (max-width: 767px) {
  .c_ttl.a {
    right: 1rem;
  }
  .c_ttl.b {
    left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .c_ttl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.top_col {
  position: relative;
}

.top_col p {
  font-size: 1.4rem;
  line-height: 2;
}

.top_col .img img {
  display: block;
}

@media screen and (max-width: 767px) {
  .top_col {
    margin-top: 5.2rem;
  }
  .top_col p {
    margin: 5rem 9.5%;
  }
  .top_col p br {
    display: none;
  }
  .top_col .img {
    width: 64%;
  }
  .top_col .catch {
    position: absolute;
    top: 8.5rem;
    z-index: 1;
    left: 40%;
    margin: 0;
  }
  .top_col .catch img {
    width: 20rem;
  }
  .top_col.b .img {
    margin-left: auto;
  }
  .top_col.b .catch {
    left: 12%;
  }
}

@media screen and (min-width: 768px) {
  .top_col {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 70rem;
  }
  .top_col.b {
    flex-flow: row-reverse;
  }
  .top_col > div {
    width: 50%;
  }
  .top_col .catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .top_col .catch img {
    width: 27rem;
  }
  .top_col .img {
    background: no-repeat center center / cover;
    height: 100%;
  }
  .top_col .img > img {
    visibility: hidden;
    display: block;
  }
  .top_col .desc p {
    width: 30rem;
    margin: 0 auto;
  }
}

.top_sec {
  text-align: center;
}

.top_sec p {
  font-size: 1.5rem;
  line-height: 2.4;
}

@media screen and (max-width: 767px) {
  .top_sec {
    padding: 5rem 0 15rem;
  }
}

@media screen and (min-width: 768px) {
  .top_sec {
    height: 70rem;
  }
  .top_sec p {
    margin-bottom: 6rem;
  }
}

.top_sec1 {
  background: #f2f2f2;
}

.top_sec1 img {
  width: 41.2rem;
}

@media screen and (max-width: 767px) {
  .top_sec1 {
    margin-bottom: 10rem;
  }
  .top_sec1 img {
    width: 25rem;
    position: absolute;
    left: 25%;
  }
}

@media screen and (min-width: 768px) {
  .top_sec1 {
    padding-top: 12rem;
  }
}

.top_sec2 {
  background: url(../img/about_img02.jpg) no-repeat center bottom/cover;
}

.top_sec2 img {
  width: 18.05rem;
}

@media screen and (max-width: 767px) {
  .top_sec2 {
    background-image: url(../img/about_img02_sp.jpg);
    padding-bottom: 25rem;
  }
  .top_sec2 img {
    margin-top: 3rem;
    width: 21rem;
  }
}

@media screen and (min-width: 768px) {
  .top_sec2 {
    padding-top: 19rem;
    padding-left: 50%;
  }
}

.top_tab {
  width: 120rem;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.top_tab > * {
  width: 31.3%;
}

@media screen and (min-width: 768px) {
  .top_tab {
    margin-top: -6rem;
  }
  .top_tab.sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top_tab {
    width: auto;
    margin: 0 -6% 3rem;
  }
  .top_tab.pc {
    display: none;
  }
}

.top_tab a {
  position: relative;
}

.top_tab a.active:hover {
  opacity: 1;
}

.top_tab a.active:before {
  content: '';
  width: 100%;
  position: absolute;
  border-top: solid 2px #8dc21f;
  bottom: -1rem;
}

.top_tab a.active p {
  display: none;
}

.top_tab img {
  display: block;
}

.top_tab p {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}

.top_tab i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  letter-spacing: .2em;
}

.top_tab small {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
  border-bottom: solid 1px #fff;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .top_tab {
    margin-bottom: 5rem;
  }
  .top_tab a.active:before {
    bottom: -.7rem;
  }
  .top_tab i {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-top: -.5em;
  }
  .top_tab small {
    font-size: .9rem;
    bottom: 1rem;
  }
}

.top_quality {
  width: 80rem;
  margin: 0 auto;
}

.top_quality > li {
  padding: 5rem 0 10rem;
}

@media screen and (max-width: 767px) {
  .top_quality {
    width: auto;
    margin: -4rem 9.5% 0;
  }
  .top_quality > li {
    padding: 0 0 5rem;
  }
}

.top_quality .ttl {
  text-align: center;
  color: #8dc21f;
  font-size: 1.8rem;
  margin-bottom: 4.5rem;
}

.top_quality .ttl small {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  width: 3.2em;
  height: 3.2em;
  line-height: 3.2;
  color: #fff;
  background: #8dc21f;
  border-radius: 100%;
  margin-bottom: 3.5rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  .top_quality .ttl {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }
  .top_quality .ttl small {
    font-size: .9rem;
  }
}

.top_quality dl {
  letter-spacing: .1em;
}

.top_quality dt {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: .8em;
}

@media screen and (max-width: 767px) {
  .top_quality dt {
    text-align: left;
    font-size: 1.4rem;
    margin-bottom: 1em;
    letter-spacing: .05em;
  }
}

.top_quality dd {
  font-size: 1.3rem;
  line-height: 2;
}

.top_quality dd + dt {
  margin-top: 4.5rem;
}

.top_quality dd span {
  line-height: 5rem;
}

@media screen and (max-width: 767px) {
  .top_quality dd + dt {
    margin-top: 3.5rem;
  }
}

.top_quality .box {
  background: #8dc21f;
  padding: 2.3rem;
  color: #fff;
  position: relative;
  margin-top: 4.5rem;
}

@media screen and (max-width: 767px) {
  .top_quality .box {
    padding: 1.7rem;
    margin-top: 3.5rem;
  }
  .top_quality .box.a {
    padding-bottom: 5rem;
  }
  .top_quality .box dt {
    margin-bottom: .3em;
  }
}

.top_quality .box p {
  font-size: 1.2rem;
  line-height: 1.83;
  margin-top: .3em;
}

.top_quality .box p, .top_quality .box dd {
  letter-spacing: -.05em;
  font-size: 1.3rem;
  line-height: 2;
}

.top_quality .box dl {
  margin: 0;
}

.top_quality .box img.a {
  position: absolute;
  width: 8.9rem;
  left: -3.5rem;
  top: -2rem;
}

.top_quality .box img.b {
  position: absolute;
  width: 19.4rem;
  right: -6rem;
  bottom: -7rem;
}

@media screen and (max-width: 767px) {
  .top_quality .box img.a {
    width: 6.5rem;
    left: -2rem;
    top: -1.5rem;
  }
  .top_quality .box img.b {
    right: -2rem;
    width: 15rem;
    bottom: -4rem;
  }
}

@media screen and (max-width: 767px) {
  .top_quality ul img {
    float: left;
    width: 38%;
  }
  .top_quality ul p {
    float: right;
    line-height: 2;
    width: 58%;
    font-size: 1.12rem;
    letter-spacing: .05em;
  }
  .top_quality ul li + li {
    margin-top: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .top_quality ul {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .top_quality ul > * {
    width: 22.8%;
  }
  .top_quality > li {
    display: none;
  }
  .top_quality > li.active {
    display: block;
  }
  .top_quality .box {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .top_quality .box figure {
    width: 32%;
  }
  .top_quality .box p, .top_quality .box dl {
    width: 65%;
  }
}

.top_voice .ttl {
  text-align: center;
  color: #8dc21f;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.top_voice dt {
  font-size: 1.4rem;
  margin-bottom: 1.5em;
  text-align: center;
}

.top_voice dd {
  font-size: 1.2rem;
  line-height: 1.72;
  letter-spacing: .05em;
}

@media screen and (max-width: 767px) {
  .top_voice .slide {
    background: url(../img/voice_bg_sp.jpg) no-repeat 50%/cover;
    padding: 4rem 9.5%;
  }
  .top_voice .ttl {
    margin-bottom: 2rem;
  }
  .top_voice li {
    color: #fff;
  }
  .top_voice li + li {
    margin-top: 2rem;
  }
  .top_voice li img {
    width: 5.83rem;
    position: absolute;
  }
  .top_voice li dt {
    padding-top: 2rem;
    text-align: left;
    padding-left: 8rem;
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .top_voice {
    color: #fff;
  }
  .top_voice .slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/voice_bg.jpg) no-repeat 50%/cover;
    left: 0;
    top: 4.5rem;
    z-index: -1;
  }
  .top_voice .item {
    width: 46rem;
    padding: 0 3rem;
  }
  .top_voice .item img {
    width: 10rem;
    display: block;
    margin: 0 auto 2rem;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 2;
  height: 3.1rem;
  width: 2.1rem;
  top: 21rem;
  border: none;
  color: transparent;
  cursor: pointer;
}

.slick-prev:active, .slick-prev:focus,
.slick-next:active,
.slick-next:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    visibility: hidden;
  }
}

.slick-prev {
  background: url(../img/ico_prev.png) no-repeat left top/contain;
}

@media screen and (min-width: 768px) {
  .top_faci .slick-prev {
    left: -7rem;
    left: 50%;
    margin-left: -59rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1380px) {
  .top_faci .slick-prev {
    display: none;
  }
}

.top_voice .slick-prev {
  left: 50%;
  margin-left: -46rem;
  background-image: url(../img/ico_prev_01.png);
}

.slick-next {
  background: url(../img/ico_next.png) no-repeat right top/contain;
}

@media screen and (min-width: 768px) {
  .top_faci .slick-next {
    right: -7rem;
    right: 50%;
    margin-right: -59rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1380px) {
  .top_faci .slick-next {
    display: none;
  }
}

.top_voice .slick-next {
  background-image: url(../img/ico_next_01.png);
  right: 50%;
  margin-right: -46rem;
}

/* Dots */
.slick-dots {
  text-align: center;
}

.top_main .slick-dots {
  position: absolute;
  width: 100%;
  bottom: 1.5rem;
}

.top_main .slick-dots li {
  margin: 0;
}

.top_voice .slick-dots {
  margin: 4rem auto 2rem;
}

.top_voice .slick-dots li.slick-active button:before {
  background: #8dc21f;
}

.top_voice .slick-dots button {
  width: 4.5rem;
}

.top_voice .slick-dots button:before {
  width: 4rem;
  height: 2px;
  border-radius: 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 .6rem;
}

.slick-dots li.slick-active button:before {
  background: #000;
}

.slick-dots button {
  border: none;
  cursor: pointer;
  color: transparent;
  position: relative;
  background: none;
  width: 2rem;
  height: 2rem;
}

.slick-dots button:active, .slick-dots button:focus {
  outline: 0;
}

.slick-dots button:before {
  content: '';
  width: .8rem;
  height: .8rem;
  background: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

.caution{
	background:#f2f2f2;
	padding: 10rem 0;
	margin-bottom: 10rem;
}

.caution .photo{
	width: 26rem;
	margin: 0 auto;
	margin-bottom: 1rem;
}

.caution h3.ttl{
	text-align: center;
    font-size: 1.8rem;
    margin-bottom: 4rem;
	text-decoration: underline;
}
.caution h4{
	text-align: center;
	font-size: 1.6rem;
    line-height: 2;
    margin-bottom: .8em;
	padding: 0 1.2rem;

}

.caution p{
	text-align: center;
	font-size: 1.6rem;
    line-height: 2;
}
.caution p span{
	font-size: 1rem;
}

/*# sourceMappingURL=style.css.map */