@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 , button, input, select, a {
	background: transparent;
	border: 0;
	font-size: 100%;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	margin: 0;
	padding: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  position: relative;
}
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
  position: relative;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.6;
  color: #585858;
	overflow: auto;
  -webkit-overflow-scrolling: touch;
}
ol, ul {
  list-style: none;
}
table {
  width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}
thead th {
  background-color: #cb2d11;
  color: white;
}
tbody th {
  background-color: #cfe8f4;
  font-weight: normal;
}
th, td {
  vertical-align: middle;
  text-align: center;
  word-wrap : break-word;
  overflow-wrap : break-word;
  padding: 18px;
  border: 1px solid #cccccc;
}
a {
	background: transparent;
  line-height: 1.5;
  font-weight: bold;
	color: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
}
button {
	color: inherit;
  line-height: 1.5;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #585858;
  padding: 12px;
  border-radius: 6px;
}
button:hover {
  cursor: pointer;
  opacity: 0.8;
}
button:disabled {
  border: none;
  background-color: whitesmoke;
  color: #cccccc;
}
.button {
	color: inherit;
  line-height: 1.5;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #585858;
  padding: 12px;
  border-radius: 6px;
}
.button:hover {
  cursor: pointer;
  opacity: 0.8;
}
select {
	cursor: pointer;
	vertical-align: baseline;
	text-align: left;
  border: 1px solid #585858;
  background-color: white;
  line-height: 1.5;
  height: 44px;
}
select:disabled {
	cursor: default;
  background-color: whitesmoke;
	color: #cccccc;
}
input {
	vertical-align: baseline;
	text-align: left;
  border: 1px solid #666666;
  background-color: white;
  line-height: 1.5;
  padding: 12px;
  border-radius: 6px;
}
input[type="radio"], input[type="checkbox"] {
  width: auto;
}
input:disabled {
  border: none;
  background-color: whitesmoke;
  color: #cccccc;
}
input::placeholder {
  color: #aaaaaa;
}
label:hover {
  cursor: pointer;
}
label.required::after {
  content: "*";
  display: inline-block;
  color: #aaa104;
  font-weight: bold;
}
figure {
  font-weight: bold;
  word-break: break-all;
}
h1 {
  font-size: 36px;
  font-weight: bold;
  word-break: break-all;
  padding: 36px 0;
}
h2 {
  font-size: 28px;
  font-weight: bold;
  word-break: break-all;
  padding: 28px 0;
}
h3 {
  font-size: 22px;
  font-weight: bold;
  word-break: break-all;
  padding: 22px 0;
}
h4 {
  font-size: 18px;
  font-weight: bold;
  word-break: break-all;
  padding: 18px 0;
}
h5 {
  font-weight: normal;
  word-break: break-all;
  padding: 14px 0;
}
.contents {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 0 28px;
}
.white_space_nowrap {
	white-space: nowrap;
	overflow: initial;
}

/* position */
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
  z-index: 9;
}
.fixed_header {
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  transition: top 0.5s;
}
.top_0 {
  top: 0;
}
.top_m65px {
  top: -65px;
}
.top_m80px {
  top: -80px;
}
.bottom_0 {
  bottom: 0;
}
.left_0 {
  left: 0;
}
.right_0 {
  right: 0;
}
.zindex_1 {
  z-index: 1;
}
.zindex_2 {
  z-index: 2;
}
.zindex_3 {
  z-index: 3;
}
.zindex_4 {
  z-index: 4;
}
.zindex_5 {
  z-index: 5;
}
.zindex_6 {
  z-index: 6;
}
.zindex_7 {
  z-index: 7;
}
.zindex_8 {
  z-index: 8;
}
.zindex_9 {
  z-index: 9;
}

/* display */
.block {
  display: block;
}
.inline_block {
  display: inline-block;
}
.inline_flex {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.hidden {
  display: none;
}

/* overflow */
.overflow_hidden {
  overflow: hidden;
}

/* width */
.width_auto {
  width: auto;
}
.width_100 {
  width: 100%;
}
.width_1 {
  width: 1000px;
}
.width_2 {
  width: 800px;
}
.width_3 {
  width: 450px;
}
.width_4 {
  width: 270px;
}
.width_5 {
  width: 225px;
}
.width_6 {
  width: 120px;
}
.max_width_50 {
  max-width: 50%;
}
.max_width_1 {
  max-width: 1000px;
}
.max_width_2 {
  max-width: 800px;
}
.max_width_3 {
  max-width: 450px;
}
.max_width_4 {
  max-width: 270px;
}
.max_width_5 {
  max-width: 225px;
}
.max_width_6 {
  max-width: 120px;
}
.min_width_1 {
  min-width: 1000px;
}
.min_width_2 {
  min-width: 800px;
}
.min_width_3 {
  min-width: 450px;
}
.min_width_4 {
  min-width: 270px;
}
.min_width_5 {
  min-width: 225px;
}
.min_width_6 {
  min-width: 120px;
}

/* height */
.height_super {
  height: 450px;
}
.height_1 {
  height: 300px;
}
.height_2 {
  height: 250px;
}
.height_3 {
  height: 180px;
}
.height_4 {
  height: 66px;
}
.height_5 {
  height: 54px;
}
.height_6 {
  height: 36px;
}

/* background */
.bg_color_none {
  background-color: transparent;
}
.bg_color_black {
  background-color: black;
}
.bg_color_smoke {
  background-color: whitesmoke;
}
.bg_color_smoke_to_white {
  background: linear-gradient(whitesmoke, white);
}
.bg_color_main_dark {
  background-color: #cb2d11;
  color: white;
}
.bg_color_main {
  background-color: #f16d55;
  color: white;
}
.bg_color_main_light {
  background-color: #fce3de;
}
.bg_color_sub_dark {
  background-color: #aaa104;
  color: white;
}
.bg_color_sub {
  background-color: #dcd105;
  color: white;
}
.bg_color_sub_light {
  background-color: #fefde1;
}
.bg_color_grey_dark {
  background-color: #585858;
  color: white;
}
.bg_color_grey {
  background-color: #888888;
  color: white;
}
.bg_color_grey_light {
  background-color: #cccccc;
}
.bg_color_white {
  background-color: white;
}
.bg_color_sub_to_white {
  background: linear-gradient(90deg, #f16d55 50%, white 80%);
}

/* border */
.border_none {
  border: none;
}
.border_solid {
  border: 1px solid;
}
.border_solid_6px {
  border: 6px solid;
}
.border_solid_bottom {
  border-bottom: 1px solid;
}
.border_solid_top {
  border-top: 1px solid;
}
.border_solid_left {
  border-left: 1px solid;
}
.border_solid_right {
  border-right: 1px solid;
}
.border_solid_left_6px {
  border-left: 6px solid;
}
.border_solid_top_6px {
  border-top: 6px solid;
}
.border_solid_bottom_6px {
  border-bottom: 6px solid;
}
.border_color_main_dark {
  border-color: #cb2d11;
}
.border_color_main {
  border-color: #f16d55;
}
.border_color_main_light {
  border-color: #fce3de;
}
.border_color_sub_dark {
  border-color: #aaa104;
}
.border_color_sub {
  border-color: #dcd105;
}
.border_color_sub_light {
  border-color: #fefde1;
}
.border_color_grey_dark {
  border-color: #585858;
}
.border_color_grey {
  border-color: #888888;
}
.border_color_grey_light {
  border-color: #cccccc;
}
.border_color_white {
  border-color: white;
}
.border_circle {
  border-radius: 50%;
}
.border_radius_none {
  border-radius: 0;
}
.border_radius_6 {
  border-radius: 6px;
}
.border_radius_12 {
  border-radius: 12px;
}

/* box-shadow */
.shadow {
  box-shadow: #555 0px 0px 5px;
}

/* color */
.color_main_dark {
  color: #cb2d11;
}
.color_main {
  color: #f16d55;
}
.color_main_light {
  color: #fce3de;
}
.color_sub_dark {
  color: #aaa104;
}
.color_sub {
  color: #dcd105;
}
.color_sub_light {
  color: #fefde1;
}
.color_grey_dark {
  color: #585858;
}
.color_grey {
  color: #888888;
}
.color_grey_light {
  color: #cccccc;
}
.color_black {
  color: black;
}
.color_white {
  color: white;
}

/* font-size */
.font_mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.font_size_super {
  font-size: 60px;
}
.font_size_1 {
  font-size: 50px;
}
.font_size_2 {
  font-size: 36px;
}
.font_size_3 {
  font-size: 28px;
}
.font_size_4 {
  font-size: 22px;
}
.font_size_5 {
  font-size: 18px;
}
.font_size_6 {
  font-size: 14px;
}
.font_bold {
  font-weight: bold;
}
.font_normal {
  font-weight: normal;
}
.line_height_1_5 {
  line-height: 1.5;
}
.line_height_2 {
  line-height: 2;
}

/* flex */
.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.wrap_reverse {
  flex-wrap: wrap-reverse;
}
.nowrap {
  flex-wrap: nowrap;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.flex_center {
  justify-content: center;
}
.flex_right {
  justify-content: flex-end;
}
.flex_vertical_stretch {
  align-items: stretch;
}
.grow_1 {
  flex-grow: 1;
}

/* text-align */
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}

/* padding */
.padding_0 {
  padding: 0;
}
.padding_1 {
  padding: 36px;
}
.padding_2 {
  padding: 28px;
}
.padding_3 {
  padding: 22px;
}
.padding_4 {
  padding: 18px;
}
.padding_5 {
  padding: 14px;
}
.padding_6 {
  padding: 12px;
}
.padding_top_0 {
  padding-top: 0;
}
.padding_top_1 {
  padding-top: 36px;
}
.padding_top_2 {
  padding-top: 28px;
}
.padding_top_3 {
  padding-top: 22px;
}
.padding_top_4 {
  padding-top: 18px;
}
.padding_top_5 {
  padding-top: 14px;
}
.padding_top_6 {
  padding-top: 12px;
}
.padding_bottom_0 {
  padding-bottom: 0;
}
.padding_bottom_1 {
  padding-bottom: 36px;
}
.padding_bottom_2 {
  padding-bottom: 28px;
}
.padding_bottom_3 {
  padding-bottom: 22px;
}
.padding_bottom_4 {
  padding-bottom: 18px;
}
.padding_bottom_5 {
  padding-bottom: 14px;
}
.padding_bottom_6 {
  padding-bottom: 12px;
}
.padding_vertical_super {
  padding-top: 130px;
  padding-bottom: 130px;
}
.padding_vertical_0 {
  padding-top: 0;
  padding-bottom: 0;
}
.padding_vertical_1 {
  padding-top: 36px;
  padding-bottom: 36px;
}
.padding_vertical_2 {
  padding-top: 28px;
  padding-bottom: 28px;
}
.padding_vertical_3 {
  padding-top: 22px;
  padding-bottom: 22px;
}
.padding_vertical_4 {
  padding-top: 18px;
  padding-bottom: 18px;
}
.padding_vertical_5 {
  padding-top: 14px;
  padding-bottom: 14px;
}
.padding_vertical_6 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.padding_left_0 {
  padding-left: 0;
}
.padding_left_1 {
  padding-left: 36px;
}
.padding_left_2 {
  padding-left: 28px;
}
.padding_left_3 {
  padding-left: 22px;
}
.padding_left_4 {
  padding-left: 18px;
}
.padding_left_5 {
  padding-left: 14px;
}
.padding_left_6 {
  padding-left: 12px;
}
.padding_right_0 {
  padding-right: 0;
}
.padding_right_1 {
  padding-right: 36px;
}
.padding_right_2 {
  padding-right: 28px;
}
.padding_right_3 {
  padding-right: 22px;
}
.padding_right_4 {
  padding-right: 18px;
}
.padding_right_5 {
  padding-right: 14px;
}
.padding_right_6 {
  padding-right: 12px;
}
.padding_horizontal_0 {
  padding-left: 0;
  padding-right: 0;
}
.padding_horizontal_1 {
  padding-left: 36px;
  padding-right: 36px;
}
.padding_horizontal_2 {
  padding-left: 28px;
  padding-right: 28px;
}
.padding_horizontal_3 {
  padding-left: 22px;
  padding-right: 22px;
}
.padding_horizontal_4 {
  padding-left: 18px;
  padding-right: 18px;
}
.padding_horizontal_5 {
  padding-left: 14px;
  padding-right: 14px;
}
.padding_horizontal_6 {
  padding-left: 12px;
  padding-right: 12px;
}

/* margin */
.margin_auto {
  margin: auto;
}
.margin_0 {
  margin: 0;
}
.margin_1 {
  margin: 36px;
}
.margin_2 {
  margin: 28px;
}
.margin_3 {
  margin: 22px;
}
.margin_4 {
  margin: 18px;
}
.margin_5 {
  margin: 14px;
}
.margin_6 {
  margin: 12px;
}
.margin_top_0 {
  margin-top: 0;
}
.margin_top_1 {
  margin-top: 36px;
}
.margin_top_2 {
  margin-top: 28px;
}
.margin_top_3 {
  margin-top: 22px;
}
.margin_top_4 {
  margin-top: 18px;
}
.margin_top_5 {
  margin-top: 14px;
}
.margin_top_6 {
  margin-top: 12px;
}
.margin_bottom_0 {
  margin-bottom: 0;
}
.margin_bottom_1 {
  margin-bottom: 36px;
}
.margin_bottom_2 {
  margin-bottom: 28px;
}
.margin_bottom_3 {
  margin-bottom: 22px;
}
.margin_bottom_4 {
  margin-bottom: 18px;
}
.margin_bottom_5 {
  margin-bottom: 14px;
}
.margin_bottom_6 {
  margin-bottom: 12px;
}
.margin_vertical_0 {
  margin-top: 0;
  margin-bottom: 0;
}
.margin_vertical_1 {
  margin-top: 36px;
  margin-bottom: 36px;
}
.margin_vertical_2 {
  margin-top: 28px;
  margin-bottom: 28px;
}
.margin_vertical_3 {
  margin-top: 22px;
  margin-bottom: 22px;
}
.margin_vertical_4 {
  margin-top: 18px;
  margin-bottom: 18px;
}
.margin_vertical_5 {
  margin-top: 14px;
  margin-bottom: 14px;
}
.margin_vertical_6 {
  margin-top: 12px;
  margin-bottom: 12px;
}
.margin_right_0 {
  margin-right: 0;
}
.margin_right_1 {
  margin-right: 36px;
}
.margin_right_2 {
  margin-right: 28px;
}
.margin_right_3 {
  margin-right: 22px;
}
.margin_right_4 {
  margin-right: 18px;
}
.margin_right_5 {
  margin-right: 14px;
}
.margin_right_6 {
  margin-right: 12px;
}
.margin_left_0 {
  margin-left: 0;
}
.margin_left_1 {
  margin-left: 36px;
}
.margin_left_2 {
  margin-left: 28px;
}
.margin_left_3 {
  margin-left: 22px;
}
.margin_left_4 {
  margin-left: 18px;
}
.margin_left_5 {
  margin-left: 14px;
}
.margin_left_6 {
  margin-left: 12px;
}
.margin_horizontal_0 {
  margin-left: 0;
  margin-right: 0;
}
.margin_horizontal_1 {
  margin-left: 36px;
  margin-right: 36px;
}
.margin_horizontal_2 {
  margin-left: 28px;
  margin-right: 28px;
}
.margin_horizontal_3 {
  margin-left: 22px;
  margin-right: 22px;
}
.margin_horizontal_4 {
  margin-left: 18px;
  margin-right: 18px;
}
.margin_horizontal_5 {
  margin-left: 14px;
  margin-right: 14px;
}
.margin_horizontal_6 {
  margin-left: 12px;
  margin-right: 12px;
}

.emphasis_line_main_white {
  width: 100;
  height: 18px;
  border-top: solid 2px #f16d55;
  margin-bottom: 30px;
}
.emphasis_line_main_white:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background-color: white;
  border-left: solid 2px #f16d55;
  border-bottom: solid 2px #f16d55;
  transform: rotate(-45deg);
}
.emphasis_line_main_main_light {
  width: 100;
  height: 18px;
  border-top: solid 2px #f16d55;
  margin-bottom: 30px;
}
.emphasis_line_main_main_light:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background-color: #fce3de;
  border-left: solid 2px #f16d55;
  border-bottom: solid 2px #f16d55;
  transform: rotate(-45deg);
}
.emphasis_line_main_smoke {
  width: 100;
  height: 18px;
  border-top: solid 2px #f16d55;
  margin-bottom: 30px;
}
.emphasis_line_main_smoke:after{
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background-color: whitesmoke;
  border-left: solid 2px #f16d55;
  border-bottom: solid 2px #f16d55;
  transform: rotate(-45deg);
}
.numbering {
  counter-reset: number;
}
.numbering h2::before{
  position: absolute;
  top: 0.05em;
  left: -1.8em;
	display: block;
	width: 1em;
	height: 1em;
	line-height: 1em;
	background: white;
  border-radius: 50%;
  border: 5px solid #aaa104;
	text-align: center;
	font-weight: bold;
	counter-increment: number;
	content: counter(number);
}

/*slick setting*/
.slick-prev {
  left: -60px;
}
.slick-next {
  right: -60px;
}
.slick-prev, .slick-next {
  width: 50px;
  height: 50px;
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  font-size: 50px;
  color: black;
}

/* pc */
@media screen and (min-width:960px) {
  .pc_hidden {
    display: none;
  }
}


/* tablet */
@media screen and (max-width:959px) {
  th, td {
    display: block;
    width: 100%;
  }
  /* font-size */
  .tablet_font_size_1 {
    font-size: 50px;
  }
  .tablet_font_size_2 {
    font-size: 36px;
  }
  .tablet_font_size_3 {
    font-size: 28px;
  }
  .tablet_font_size_4 {
    font-size: 22px;
  }
  .tablet_font_size_5 {
    font-size: 18px;
  }
  .tablet_font_size_6 {
    font-size: 14px;
  }

  /* display */
  .tablet_hidden {
    display: none;
  }
  .tablet_flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .tablet_flex_middle {
    align-items: center;
  }
  .tablet_wrap {
    flex-wrap: wrap;
  }
  .tablet_nowrap {
    flex-wrap: nowrap;
  }
  .tablet_flex_bottom {
    align-items: flex-end;
  }
  .tablet_flex_center {
    justify-content: center;
  }
  .tablet_flex_right {
    justify-content: flex-end;
  }
  .tablet_flex_vertical_stretch {
    align-items: stretch;
  }
  .tablet_grow_1 {
    flex-grow: 1;
  }
  
  /* position */
  .tablet_fixed {
    position: fixed;
    z-index: 9;
  }
  .tablet_top_0 {
    top: 0;
  }
  .tablet_bottom_0 {
    bottom: 0;
  }
  .tablet_left_0 {
    left: 0;
  }
  .tablet_right_0 {
    right: 0;
  }
  .tablet_relative {
    position: relative;
  }
  .tablet_zindex_1 {
    z-index: 1;
  }
  .tablet_zindex_2 {
    z-index: 2;
  }
  .tablet_zindex_3 {
    z-index: 3;
  }
  .tablet_zindex_4 {
    z-index: 4;
  }
  .tablet_zindex_5 {
    z-index: 5;
  }
  .tablet_zindex_6 {
    z-index: 6;
  }
  .tablet_zindex_7 {
    z-index: 7;
  }
  .tablet_zindex_8 {
    z-index: 8;
  }
  .tablet_zindex_9 {
    z-index: 9;
  }
  
  /* width */
  .tablet_width_auto {
    width: auto;
  }
  .tablet_width_100 {
    width: 100%;
  }
  .tablet_width_50 {
    width: 50%;
  }
  .tablet_max_width_100 {
    max-width: 100%;
  }

  /* height */
  .tablet_height_auto {
    height: auto;
  }

  /* text-align */
  .tablet_text_left {
    text-align: left;
  }

  /* margin */
  .tablet_margin_auto {
    margin: auto;
  }
  .tablet_margin_0 {
    margin: 0;
  }
  .tablet_margin_1 {
    margin: 36px;
  }
  .tablet_margin_2 {
    margin: 28px;
  }
  .tablet_margin_3 {
    margin: 22px;
  }
  .tablet_margin_4 {
    margin: 18px;
  }
  .tablet_margin_5 {
    margin: 14px;
  }
  .tablet_margin_6 {
    margin: 12px;
  }
  .tablet_margin_bottom_0 {
    margin-bottom: 0;
  }
  .tablet_margin_bottom_super {
    margin-bottom: 78px;
  }
  .tablet_margin_bottom_1 {
    margin-bottom: 36px;
  }
  .tablet_margin_bottom_2 {
    margin-bottom: 28px;
  }
  .tablet_margin_bottom_3 {
    margin-bottom: 22px;
  }
  .tablet_margin_bottom_4 {
    margin-bottom: 18px;
  }
  .tablet_margin_bottom_5 {
    margin-bottom: 14px;
  }
  .tablet_margin_bottom_6 {
    margin-bottom: 12px;
  }
  .tablet_margin_top_0 {
    margin-top: 0;
  }
  .tablet_margin_top_super {
    margin-top: 78px;
  }
  .tablet_margin_top_1 {
    margin-top: 36px;
  }
  .tablet_margin_top_2 {
    margin-top: 28px;
  }
  .tablet_margin_top_3 {
    margin-top: 22px;
  }
  .tablet_margin_top_4 {
    margin-top: 18px;
  }
  .tablet_margin_top_5 {
    margin-top: 14px;
  }
  .tablet_margin_top_6 {
    margin-top: 12px;
  }
  
  /* padding */
  .tablet_padding_0 {
    padding: 0;
  }
  .tablet_padding_1 {
    padding: 36px;
  }
  .tablet_padding_2 {
    padding: 28px;
  }
  .tablet_padding_3 {
    padding: 22px;
  }
  .tablet_padding_4 {
    padding: 18px;
  }
  .tablet_padding_5 {
    padding: 14px;
  }
  .tablet_padding_6 {
    padding: 12px;
  }
  .tablet_padding_horizontal_0 {
    padding-left: 0;
    padding-right: 0;
  }
  .tablet_padding_horizontal_1 {
    padding-left: 36px;
    padding-right: 36px;
  }
  .tablet_padding_horizontal_2 {
    padding-left: 28px;
    padding-right: 28px;
  }
  .tablet_padding_horizontal_3 {
    padding-left: 22px;
    padding-right: 22px;
  }
  .tablet_padding_horizontal_4 {
    padding-left: 18px;
    padding-right: 18px;
  }
  .tablet_padding_horizontal_5 {
    padding-left: 14px;
    padding-right: 14px;
  }
  .tablet_padding_horizontal_6 {
    padding-left: 12px;
    padding-right: 12px;
  }
  
  /* border */
  .tablet_border_radius_none {
    border-radius: 0;
  }
  .tablet_border_radius_6 {
    border-radius: 6px;
  }

  /* box-shadow */
  .tablet_shadow {
    box-shadow: #555 0px 0px 5px;
  }

  /*slick setting*/
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
  }
  .slick-prev:before, .slick-next:before {
    font-size: 40px;
  }
  .slick-prev, .slick-next {
    top: calc(100% + 20px);
  }
}


