@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #111111;
  background: #f6f7e2;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
}

main {
  width: 33.3333333333%;
  max-width: 540px;
  margin: 30px auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}
@media (max-width: 980px) {
  main {
    width: 40%;
    margin: 30px 20% 30px 40%;
  }
}
@media (max-width: 768px) {
  main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
  }
}

section {
  margin: 0;
  padding: 80px 0;
}
@media (max-width: 768px) {
  section {
    margin: 0;
    padding: 6.5vw 0;
  }
}

.container {
  max-width: calc(540px + 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

a {
  color: #0072f3;
  text-decoration: none;
}

a:link {
  color: #0072f3;
  text-decoration: none;
}

a:visited {
  color: #0072f3;
  text-decoration: none;
}

a:hover {
  color: #0072f3;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

a img:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===== header ====================================*/
header {
  background: #ffffff;
  position: fixed;
  height: 70px;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111111;
  padding: 20px;
}
header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
header .logo {
  font-size: 20px;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .logo {
    margin: 0 0 0 10px;
  }
}
header nav ul {
  display: flex;
  justify-content: center;
}
header nav ul li a {
  padding: 10px;
}
@media (max-width: 768px) {
  header {
    height: 60px;
    display: flex;
  }
  header.UpMove, header.DownMove {
    animation: none;
    padding: 0;
  }
  header #g-nav {
    position: fixed;
    z-index: 999;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(233, 222, 215, 0.918);
    transition: all 0.6s;
  }
  header #g-nav.panelactive {
    top: 0;
  }
  header #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  header #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  header #g-nav ul li {
    list-style: none;
    text-align: center;
  }
  header #g-nav ul li a {
    color: #000000;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
  }
  header .openbtn {
    position: fixed;
    z-index: 9999;
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #42b86a;
  }
  header .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 17px;
    height: 3px;
    border-radius: 2px;
    background-color: #ffffff;
    width: 45%;
  }
  header .openbtn span:nth-of-type(1) {
    top: 20px;
  }
  header .openbtn span:nth-of-type(2) {
    top: 28px;
  }
  header .openbtn span:nth-of-type(3) {
    top: 36px;
  }
  header .openbtn.active span:nth-of-type(1) {
    top: 23px;
    left: 23px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .openbtn.active span:nth-of-type(3) {
    top: 35px;
    left: 23px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}

/*===== footer ====================================*/
footer {
  text-align: center;
  padding: 40px 0;
  font-size: 12px;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  footer {
    padding: 20px 0 80px 0;
    font-size: 10px;
    font-size: 1rem;
  }
}

/*===== Grid ====================================*/
.grid_container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  display: grid;
}
.grid_container.gap {
  grid-gap: 20px;
}
.grid_container .item {
  height: auto;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===== common ====================================*/
.line_green {
  background: linear-gradient(transparent 60%, #42b86a 60%);
  display: inline;
}

.title1 {
  text-align: center;
  color: #111111;
  font-size: clamp(24px, 3vw, 28px);
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  letter-spacing: 0.1em;
}
.title1 span {
  font-size: clamp(16px, 2.5vw, 18px);
  display: block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #04bc52;
  letter-spacing: 0;
}
.title1 + p {
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .title1 + p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.inner_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .inner_flex {
    display: block;
  }
  .inner_flex.sp-flex {
    display: flex;
  }
}
.inner_flex.ai_fe {
  align-items: flex-end;
}
.inner_flex.ai_c {
  align-items: center;
}
.inner_flex.fd_rr {
  flex-direction: row-reverse;
}
.inner_flex.jc_c {
  justify-content: center;
}
.inner_flex.jc_sa {
  justify-content: space-around;
}

a.button, input.button, button.button, label.button {
  display: block;
  margin: 0 auto;
  color: #0072f3;
  background-color: #ffb515;
  text-align: center;
  position: relative;
  background-color: #ffb515;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  width: 100%;
  max-width: 660px;
  cursor: pointer;
  font-size: clamp(14px, 2.3vw, 18px);
  font-weight: bold;
  padding: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a.button:hover, input.button:hover, button.button:hover, label.button:hover {
  background-color: #ffd57b;
  transition: all 0.5s ease 0s;
}
a.button:hover, input.button:hover, button.button:hover, label.button:hover {
  transition: all 0.5s ease 0s;
}
a.button.disabled, input.button.disabled, button.button.disabled, label.button.disabled {
  opacity: 0.4;
  pointer-events: none;
}
a.button.s, input.button.s, button.button.s, label.button.s {
  font-size: 90%;
  padding: 5px 10px;
  display: inline-block;
  width: auto;
}
a.button.m, input.button.m, button.button.m, label.button.m {
  width: auto;
  display: inline-block;
}
a.button.gray, input.button.gray, button.button.gray, label.button.gray {
  background: #f6f6f6;
  color: #666666;
}
a.button.gray.line, input.button.gray.line, button.button.gray.line, label.button.gray.line {
  border: solid 1px #cccccc;
}
a.button.gray:hover, input.button.gray:hover, button.button.gray:hover, label.button.gray:hover {
  background: #eeeeee;
}
a.button.green, input.button.green, button.button.green, label.button.green {
  background-color: #04bc52;
  text-decoration: none;
  color: #ffffff;
}
a.button.green:hover, input.button.green:hover, button.button.green:hover, label.button.green:hover {
  background-color: #17a955;
  transition: all 0.5s ease 0s;
}
a.button.green.msg, input.button.green.msg, button.button.green.msg, label.button.green.msg {
  background-image: url(../images/icn_msg03.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  a.button.green.msg, input.button.green.msg, button.button.green.msg, label.button.green.msg {
    padding-left: 40px;
  }
}
a.button.white, input.button.white, button.button.white, label.button.white {
  background: #ffffff;
  border: solid 1px #04bc52;
  color: #04bc52;
}
a.button.white:hover, input.button.white:hover, button.button.white:hover, label.button.white:hover {
  background: #ddf4e7;
}
a.button.white.msg, input.button.white.msg, button.button.white.msg, label.button.white.msg {
  background-image: url(../images/icn_msg02.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 18px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  a.button.white.msg, input.button.white.msg, button.button.white.msg, label.button.white.msg {
    padding-left: 40px;
  }
}
a.button.white.area, input.button.white.area, button.button.white.area, label.button.white.area {
  background-image: url(../images/icn_area.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 18px;
}
a.button.white.camera, input.button.white.camera, button.button.white.camera, label.button.white.camera {
  background-image: url(../images/icn_camera.svg);
  background-position: left 20px center;
  background-repeat: no-repeat;
  background-size: 20px;
}
a.button.white.camera.s, input.button.white.camera.s, button.button.white.camera.s, label.button.white.camera.s {
  background-position: left 10px center;
  background-size: 16px;
  padding-left: 35px;
}
a.button.arrow_r::after, input.button.arrow_r::after, button.button.arrow_r::after, label.button.arrow_r::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 6px);
}
@media (max-width: 768px) {
  a.button.arrow_r::after, input.button.arrow_r::after, button.button.arrow_r::after, label.button.arrow_r::after {
    width: 1.5vw;
    height: 1.5vw;
    right: 4vw;
    top: calc(50% - 0.7vw);
  }
}
a.button.yellow, input.button.yellow, button.button.yellow, label.button.yellow {
  background-color: #ffb515;
  text-decoration: none;
  color: #ffffff;
}
a.button.yellow:hover, input.button.yellow:hover, button.button.yellow:hover, label.button.yellow:hover {
  background-color: #e8ac2c;
  transition: all 0.5s ease 0s;
}
a.button.yellow.arrow_r::after, input.button.yellow.arrow_r::after, button.button.yellow.arrow_r::after, label.button.yellow.arrow_r::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}
a.button.musubie, input.button.musubie, button.button.musubie, label.button.musubie {
  background-color: #ffcd00;
  text-decoration: none;
  color: #111111;
}
a.button.musubie:hover, input.button.musubie:hover, button.button.musubie:hover, label.button.musubie:hover {
  background-color: #e6be1a;
  transition: all 0.5s ease 0s;
}
a.button.musubie.arrow_r::after, input.button.musubie.arrow_r::after, button.button.musubie.arrow_r::after, label.button.musubie.arrow_r::after {
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

label.button > input {
  display: none;
}

/*===== PC用 ====================================*/
.pc_sidearea_left {
  position: fixed;
  left: 0;
  top: 0;
  width: 33.3333333333%;
  padding: 50px;
}
@media (max-width: 980px) {
  .pc_sidearea_left {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .pc_sidearea_left {
    display: none;
  }
}
.pc_sidearea_left .inner {
  margin: 0 auto;
  max-width: 350px;
}
.pc_sidearea_left .title {
  margin: 0 0 40px 0;
}
.pc_sidearea_left li {
  margin: 0 0 20px 0;
}

.pc_sidearea_right {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 33.3333333333%;
  text-align: right;
  font-size: 12px;
}
@media (max-width: 980px) {
  .pc_sidearea_right {
    width: 20%;
  }
}
@media (max-width: 768px) {
  .pc_sidearea_right {
    display: none;
  }
}

.foot_image1 {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 980px) {
  .foot_image1 {
    width: 27.25vw;
  }
}

.foot_image2 {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 980px) {
  .foot_image2 {
    width: 20vw;
  }
}

/*===== main ====================================*/
#mv {
  background: #63d154;
  border-radius: 20px 20px 0 0;
  position: relative;
}
@media (max-width: 768px) {
  #mv {
    border-radius: 0;
  }
}
#mv::before, #mv::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #ffffff;
  height: 103.9230484541px;
  width: 51%;
  -webkit-clip-path: polygon(0% 0, 100% 100%, 0 100%);
          clip-path: polygon(0% 0, 100% 100%, 0 100%);
}
@media (max-width: 768px) {
  #mv::before, #mv::after {
    height: 18.3vw;
  }
}
#mv::after {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  right: 0;
  left: auto;
}
#mv .main_title {
  padding: 50px 30px 20px 30px;
  text-align: center;
}
#mv .main_title img {
  max-width: 400px;
}

section h2 {
  margin: 0 0 30px 0;
  text-align: center;
}
section h2 img {
  width: auto;
}
section .screen {
  width: calc(50% - 50px);
}
section .detail {
  width: calc(50% + 20px);
}
section .detail p {
  margin: 0 0 20px 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  section .detail p {
    font-size: 14px;
    margin: 0 0 5px 0;
  }
}
section .btn {
  margin: 30px 0 0 0;
  text-align: center;
  color: #04bc52;
  font-size: 18px;
  font-weight: bold;
}
section#unifuri, section#comfuri {
  background: url(../images/bg01.jpg);
}

/*===== お問い合わせフォーム ====================================*/
#contact .form_Area {
  /*チェックボックス*/
  /*セレクト*/
  /*ラジオボタン*/
  /* エラーメッセージ*/
}
#contact .form_Area table {
  width: 100%;
}
#contact .form_Area table tr th {
  padding: 0 0 5px 0;
  width: 100%;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
}
#contact .form_Area table tr th .hissu {
  color: #f72c48;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0;
  margin: 0 0 0 10px;
}
#contact .form_Area table tr td {
  padding: 0 0 20px 0;
  width: 100%;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
#contact .form_Area table tr td p {
  font-size: 13px;
  font-size: 1.3rem;
}
#contact .form_Area table tr td ul li {
  margin: 0 0 5px 0;
}
#contact .form_Area input[type=text],
#contact .form_Area input[type=email],
#contact .form_Area input[type=tel],
#contact .form_Area textarea {
  background: #ffffff;
  padding: 15px;
  border: solid 1px #cccccc;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 5px;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .form_Area input[type=text],
  #contact .form_Area input[type=email],
  #contact .form_Area input[type=tel],
  #contact .form_Area textarea {
    padding: 15px;
  }
}
#contact .form_Area input[type=text].error,
#contact .form_Area input[type=email].error,
#contact .form_Area input[type=tel].error,
#contact .form_Area textarea.error {
  border: solid 2px #f72c48;
  background: #ffe4e4;
  margin: 0;
  color: #111111;
}
#contact .form_Area textarea {
  height: 180px;
}
#contact .form_Area input[type=checkbox] {
  display: none;
  margin: 0;
}
#contact .form_Area input[type=checkbox] + label {
  padding: 0 0 0 30px;
  position: relative;
}
#contact .form_Area input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin-top: -3px;
  background: #FFF;
  border: 1px solid #cccccc;
  border-radius: 3px;
}
#contact .form_Area input[type=checkbox].error + label::before {
  border: solid 2px #f72c48;
}
#contact .form_Area input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 5px;
  box-sizing: border-box;
  display: block;
  left: 2px;
  width: 16px;
  height: 12px;
  margin-top: -3px;
  border-left: 2px solid #0072f3;
  border-bottom: 2px solid #0072f3;
  transform: rotate(-45deg);
}
#contact .form_Area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url(../images/top/arrow_select.svg) no-repeat right 20px center;
  background-size: 14px;
  border: none;
  border-radius: 0px;
  padding: 20px 60px 20px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
}
#contact .form_Area select ::-ms-expand {
  display: none;
}
#contact .form_Area select.error {
  color: #111111;
  border: solid 2px #f72c48;
  background: #ffe4e4 url(../images/top/arrow_select.svg) no-repeat right 20px center;
  font-size: 16px;
  font-size: 1.6rem;
}
#contact .form_Area label.radio {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0px 0 3px 40px;
}
#contact .form_Area label.radio.error {
  color: #f72c48;
}
#contact .form_Area label.radio:before {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #cccccc;
  border-radius: 50%;
  left: 0px;
  content: "";
  z-index: 3;
}
#contact .form_Area label.radio:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  left: 0px;
  top: 0px;
  background-color: #04bc52;
  z-index: 1;
  border: solid 6px #ffffff;
}
#contact .form_Area label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  left: -26px;
  top: -1px;
  margin: 0px !important;
  box-shadow: 26px 2px #FFFFFF;
  border-radius: 20px;
}
#contact .form_Area label.radio input[type=radio]:checked {
  box-shadow: none;
}
#contact .form_Area label.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 26px 2px #FFF;
}
#contact .form_Area .error {
  color: #f72c48;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 5px 0 0 0;
}
#contact .form_Area .error :empty {
  display: none;
}
#contact .form_Area .policy {
  text-align: center;
  padding: 30px 0;
}
#contact .form_Area .policy .scroll {
  width: 100%;
  height: 250px;
  border: solid 10px #f1e6d7;
  padding: 20px;
  text-align: left;
  overflow-y: scroll;
  margin: 0 0 20px 0;
}
#contact .form_Area .btn {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #contact .form_Area .btn {
    margin: 0;
    _display: block;
    flex-direction: column-reverse;
  }
}
#contact .form_Area .btn a, #contact .form_Area .btn input, #contact .form_Area .btn button {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  border: none;
  border-radius: 5px;
  padding: 25px 0;
  margin: 0 0 10px 0;
  line-height: 1;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
#contact .form_Area .btn a.btn1, #contact .form_Area .btn input.btn1, #contact .form_Area .btn button.btn1 {
  background: #0072f3;
  color: #ffffff;
}
#contact .form_Area .btn a.btn2, #contact .form_Area .btn input.btn2, #contact .form_Area .btn button.btn2 {
  background: #666666;
  color: #ffffff;
}
@media (max-width: 768px) {
  #contact .form_Area .btn a.btn2, #contact .form_Area .btn input.btn2, #contact .form_Area .btn button.btn2 {
    padding: 15px 0;
  }
}
#contact .form_Area.confirm table {
  margin: 50px 0 0 0;
}
#contact .form_Area.confirm table tr th {
  padding: 30px 40px 30px 0;
}
@media (max-width: 768px) {
  #contact .form_Area.confirm table {
    margin: 30px 0 0 0;
  }
  #contact .form_Area.confirm table tr th {
    padding: 10px;
  }
  #contact .form_Area.confirm .btn {
    flex-direction: column-reverse;
  }
  #contact .form_Area.confirm .btn a, #contact .form_Area.confirm .btn input, #contact .form_Area.confirm .btn button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
  }
}

/*===== 運営会社 ====================================*/
#profile {
  background: #e9f4e8;
}
#profile dl {
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: solid 1px #b6d5b4;
  font-size: 16px;
}
#profile dl dt {
  width: 100%;
  color: #04bc52;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#profile dl dd {
  width: 100%;
}

/*===== mein コピーライト ====================================*/
.footer {
  text-align: center;
  padding: 50px 0;
  font-size: 12px;
}

/*===== Utility ====================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w10 {
  width: 10px !important;
}

.w20 {
  width: 20px !important;
}

.w30 {
  width: 30px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.w120 {
  width: 120px !important;
}

.w150 {
  width: 150px !important;
}

.w200 {
  width: 200px !important;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px !important;
}

.w350 {
  width: 350px !important;
}

.w50p {
  width: 50% !important;
  max-width: 50% !important;
}

@media (max-width: 768px) {
  .w100p_sp {
    width: 100% !important;
  }
}
.mincho {
  font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.gothic {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

.fs_ss {
  font-size: 10px;
  font-size: 1rem;
}

.fs_s {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs_m {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs_l {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs_ll {
  font-size: 18px;
  font-size: 1.8rem;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.tc {
  text-align: center !important;
}

.vt {
  vertical-align: top !important;
}

.vm {
  vertical-align: middle !important;
}

.vb {
  vertical-align: bottom !important;
}

.fl {
  padding: 0 20px 10px 0;
  float: left !important;
}

.fr {
  padding: 0 0 10px 20px;
  float: right !important;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.photo-16-9 {
  position: relative;
}
.photo-16-9::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.photo-16-9::after {
  content: "";
  display: block;
  clear: both;
}
.photo-16-9 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.photo-16-9 > .image {
  -o-object-fit: cover;
     object-fit: cover;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 10px 0;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }
  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }
  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

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

.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 {
  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;
}/*# sourceMappingURL=style.css.map */