@charset "UTF-8";
/*

@mixin buttons {
	display: block;
	margin: auto;
	width: 100%;
	padding: 12px;
	text-align: center;
	font-size: 18px;
	border-radius: 22px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	@include boxshadow;
}

@mixin boxshadow {
	-moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
}

@mixin boxshadow-warning {
	-moz-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-sizing: border-box;
}
*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	 ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
	 ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
	 ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	 ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	 ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
	 ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	 ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*

@mixin buttons {
	display: block;
	margin: auto;
	width: 100%;
	padding: 12px;
	text-align: center;
	font-size: 18px;
	border-radius: 22px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	@include boxshadow;
}

@mixin boxshadow {
	-moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
}

@mixin boxshadow-warning {
	-moz-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-sizing: border-box;
}
*/
/* -----------------------
  COMMON
 ------------------------- */
html {
  background-color: #fff;
}

body {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  position: relative;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body, button, input, select, textarea {
  color: #333333;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

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

article, aside, audio, blockquote, body, canvas, caption, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, iframe, legend, li, nav, ol, p, section, ul, video {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

*, article {
  box-sizing: border-box;
}

.scroll_fadein {
  opacity: 0;
  transform: translate(0, 60px);
  transition: all 1s;
}
.scroll_fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* -----------------------
  LAYOUT
 ------------------------- */
.section-inner {
  position: relative;
  margin: auto;
  padding: 50px 20px;
}
@media screen and (min-width: 768px), print {
  .section-inner {
    padding: 50px 20px;
  }
}
@media screen and (min-width: 992px) {
  .section-inner {
    width: 960px;
    padding: 80px 0;
  }
}
.section-inner:after {
  content: '';
  display: block;
  clear: both;
}

/* -----------------------
　　PARTS
-------------------------- */
a {
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.row {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.row.nowrap {
  flex-wrap: nowrap;
}
.row.center {
  justify-content: center;
}
.row img {
  width: 100%;
  height: auto;
}
.row > *.full {
  width: 100% !important;
}

.btn-entry a {
  background-color: #e95377;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  margin: auto;
  width: 90%;
  padding: 15px;
  font-size: 1.125rem;
  position: relative;
}
.btn-entry a:after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: 1px;
  margin-right: 15px;
  border: solid #fff;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 2px 2px 0 0;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}
@media screen and (min-width: 768px), print {
  .btn-entry a {
    width: 80%;
    background-position: top 50% right 20px;
    line-height: 82px;
    font-size: 1.8rem;
    padding: 0;
  }
}
.btn-entry a small {
  font-size: 0.83em;
}

.alignright {
  float: right;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.alignleft {
  float: left;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.aligncenter {
  text-align: center;
}
.aligncenter > * {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

.textcenter {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .only-sp {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .only-sp {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  .only-pc {
    display: block !important;
  }
}
@media screen and (min-width: 768px), print {
  .only-pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}

/* -----------------------
　　FORM
-------------------------- */
/* -----------------------
　　MODULES
-------------------------- */
/* -----------------------
　　MEDIA
-------------------------- */
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .row {
    display: block;
  }
  .row > * {
    margin-bottom: 20px;
  }

  .alignright {
    float: none;
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .alignleft {
    float: none;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  img.alignleft, img.alignright {
    width: 100%;
    height: auto;
  }

  .textleft img,
  .textright img,
  .textcenter img,
  .alignleft img,
  .alignright img,
  .aligncenter img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 15px;
  }

  .aligncenter img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 992px) {
  body {
    font-size: 16px;
  }

  a:hover, button:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*

@mixin buttons {
	display: block;
	margin: auto;
	width: 100%;
	padding: 12px;
	text-align: center;
	font-size: 18px;
	border-radius: 22px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	@include boxshadow;
}

@mixin boxshadow {
	-moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
}

@mixin boxshadow-warning {
	-moz-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	-ms-box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-shadow: 1px 1px 5px 0px rgba(224, 69, 0, 0.2);
	box-sizing: border-box;
}
*/
/* ------------------------------
   HEADER
 ------------------------------- */
#header .section-inner {
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  #header .section-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    flex-flow: row-reverse nowrap;
  }
}
@media screen and (min-width: 992px) {
  #header .section-inner > * {
    height: 555px;
  }
}
#header .image {
  background-image: url(../img/mainimage_pc.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px), print {
  #header .image {
    height: 450px;
  }
}
@media screen and (min-width: 992px) {
  #header .image {
    width: calc(100% - 600px);
    height: auto;
  }
}
#header .title {
  width: 100%;
  height: 350px;
  color: #fff;
  text-align: center;
  background-image: url(../img/bg_header.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (min-width: 992px) {
  #header .title {
    width: 780px;
    height: 555px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
#header .title-inner {
  padding-top: 70px;
}
@media screen and (min-width: 992px) {
  #header .title-inner {
    margin-top: -70px;
    padding-top: 0;
  }
}
#header .title .tagline {
  display: block;
  margin-bottom: 15px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  #header .title .tagline {
    font-size: 44px;
  }
}
#header .title .catch {
  display: block;
  width: calc(100% - 90px);
  margin: auto;
  background-color: #fff;
  color: #e95377;
  font-weight: 600;
  font-size: 22px;
  line-height: 60px;
  position: relative;
}
@media screen and (min-width: 992px) {
  #header .title .catch {
    width: 410px;
    font-size: 28px;
    line-height: 60px;
  }
}
#header .title .catch:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 35px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  left: -35px;
  top: 0;
}
#header .title .catch:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 35px 0 0;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  right: -35px;
  top: 0;
}
#header .title h1 {
  width: 100%;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  background-color: rgba(233, 52, 104, 0.5);
  padding: 10px;
}
@media screen and (min-width: 768px), print {
  #header .title h1 {
    white-space: nowrap;
    padding: 0;
    font-size: 35px;
    line-height: 90px;
  }
}
@media screen and (min-width: 992px) {
  #header .title h1 {
    font-size: 40px;
    line-height: 145px;
  }
}
#header .title h1 em {
  font-size: 1.3em;
  font-style: normal;
}
#header .title h1 small {
  display: inline-block;
  background-color: #223f99;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 10px;
  font-size: 0.615em;
  line-height: 46px;
  position: relative;
}
#header .title h1 small:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 46px 17px;
  border-color: transparent transparent #224099 transparent;
  position: absolute;
  top: 0px;
  left: -17px;
}
#header .title h1 small:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 46px 17px 0 0;
  border-color: #224099 transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -17px;
}

/* ------------------------------
   FOOTER
 ------------------------------- */
#footer {
  background-color: #5d5d5d;
}
#footer .copyright {
  padding: 12px;
  line-height: 1.3;
  color: #fff;
  text-align: center;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 992px) {
  #footer .copyright {
    font-size: 1.1875rem;
  }
}

/* ------------------------------
   COMMON
 ------------------------------- */
h2 {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  color: #333333;
  line-height: 1.3;
  font-size: 30px;
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 50px;
  }
}
h2 small {
  font-size: 0.84em;
}
h2:after {
  content: "";
  width: 60px;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  background-color: #e95377;
}
@media screen and (min-width: 768px), print {
  h2:after {
    height: 6px;
    border-radius: 3px;
  }
}

h3 {
  margin-bottom: 15px;
  padding: 5px 3%;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  font-size: 28px;
  background-color: #e95377;
}
@media screen and (min-width: 768px), print {
  h3 {
    font-size: 35px;
  }
}

.entry {
  background-color: #282828;
  padding: 30px 0;
  text-align: center;
}
.entry .row {
  display: block;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .entry .row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.entry .row > * {
  margin: 0 10px 20px;
}
@media screen and (min-width: 992px) {
  .entry .row > * {
    width: 45%;
  }
}
.entry h3 {
  background-color: transparent;
  display: inline-block;
  color: #fff;
  line-height: 1.4;
  font-size: 1.125rem;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .entry h3 {
    font-size: 1.5rem;
  }
}
.entry h3:before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transform: rotate(50deg);
  -moz-transform: rotate(50deg);
  -webkit-transform: rotate(50deg);
  -o-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  position: absolute;
  top: 50%;
  left: -40px;
}
@media screen and (min-width: 768px), print {
  .entry h3:before {
    width: 55px;
    left: -55px;
  }
}
.entry h3:after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #fff;
  transform: rotate(-50deg);
  -moz-transform: rotate(-50deg);
  -webkit-transform: rotate(-50deg);
  -o-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
  position: absolute;
  top: 50%;
  right: -40px;
}
@media screen and (min-width: 768px), print {
  .entry h3:after {
    width: 55px;
    right: -55px;
  }
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.slick-prev {
  background-color: transparent;
  background-image: url(../img/ico_paging.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  width: 21px;
  height: 0;
  padding-top: 40px;
  top: 130px;
  left: 10px;
  margin-top: -20px;
  z-index: 99;
}
@media screen and (min-width: 768px), print {
  .slick-prev {
    top: 50%;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .slick-prev {
    width: 42px;
    height: 0;
    padding-top: 80px;
    left: -100px;
    top: 50%;
    margin-top: -40px;
  }
}
.slick-next {
  background-color: transparent;
  background-image: url(../img/ico_paging.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  width: 21px;
  height: 0;
  padding-top: 40px;
  top: 130px;
  right: 10px;
  margin-top: -20px;
  z-index: 99;
}
@media screen and (min-width: 768px), print {
  .slick-next {
    top: 50%;
    right: 0;
  }
}
@media screen and (min-width: 992px) {
  .slick-next {
    width: 42px;
    height: 0;
    padding-top: 80px;
    right: -100px;
    top: 50%;
    margin-top: -40px;
  }
}

.marker {
  background: linear-gradient(transparent 70%, #fff33b 70%);
}

/* ------------------------------
   CONTENTS
 ------------------------------- */
#merit,
#feature {
  background-image: url(../img/bg_merit.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
#merit .row,
#feature .row {
  justify-content: center;
}
#merit .row > *,
#feature .row > * {
  margin-bottom: 30px;
  text-align: center;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  #merit .row > * {
    width: 29%;
    margin: 0 2%;
  }
  #feature .row > * {
    width: 35%;
    margin: 0 2% 2%;
  }
}
@media screen and (min-width: 992px) {
  #merit .row > * {
    width: 250px;
    margin: 0 10px 30px;
  }
  #feature .row > * {
    width: 40%;
    margin: 0 30px 30px;
  }
}
#merit .row > * small,
#feature .row > * small {
  font-size: 0.73em;
}
#merit .row > * img,
#feature .row > * img {
  width: 210px;
  height: auto;
  display: block;
  margin: auto auto 10px;
  border-radius: 50%;
}
#feature .row > * img {
  width: 82%;
}
#feature .row > * img {
  border-radius: 0;
}
@media screen and (min-width: 768px), print {
  #merit .row > * img,
  #feature .row > * img {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  #merit .row > * img {
    width: 210px;
    margin-bottom: 15px;
  }
  #feature .row > * img {
    width: 100%;
    margin-bottom: 15px;
  }
}

#merit .row > *:nth-of-type(1) {
  color: #8b61e2;
}
#merit .row > *:nth-of-type(2) {
  color: #377cf0;
}
#merit .row > *:nth-of-type(3) {
  color: #e95377;
}

#feature .row > *:nth-of-type(1) {
  color: #e95377;
}
#feature .row > *:nth-of-type(2) {
  color: #377cf0;
}
#feature .row > *:nth-of-type(3) {
  color: #8b61e2;
}
#feature .row > *:nth-of-type(4) {
  color: #439d65;
}
#feature .row > *:nth-of-type(5) {
  color: #377cf0;
}
#feature .row > *:nth-of-type(6) {
  color: #e95377;
}

#point {
  background-color: #de0e2b;
  color: #fff;
  text-align: center;
}
#point h2 {
  color: #fff;
}
#point h2:after {
  background-color: #fff;
}
#point p {
  font-size: 1.125em;
}

#movie {
  background-image: url(../img/bg_movie.png);
  background-position: top left;
}
#movie .video {
  width: 100%;
  width: auto;
  position: relative;
}
@media screen and (min-width: 992px) {
  #movie .video {
    width: 700px;
    margin: auto;
  }
}
#movie .video:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#movie .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#facility ul li {
  text-align: center;
}
#facility ul li img {
  width: auto;
  height: auto;
}
@media screen and (min-width: 768px), print {
  #facility ul li img {
    width: 100%;
    height: auto;
  }
}
#facility ul li span {
  display: block;
}

.course {
  background-color: #ebebeb;
}
.course h3 {
  background-color: transparent;
  background-image: -moz-linear-gradient(0deg, #e17285 0%, #e1b651 100%);
  background-image: -webkit-linear-gradient(0deg, #e17285 0%, #e1b651 100%);
  background-image: -ms-linear-gradient(0deg, #e17285 0%, #e1b651 100%);
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .course .row {
    width: 87%;
    margin: auto;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 992px) {
  .course .row {
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .course .row .image {
    width: 50%;
  }
}
@media screen and (min-width: 768px), print {
  .course .row .details {
    width: 50%;
    padding-right: 20px;
  }
}
.course .row .details h4 {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.2;
}
@media screen and (min-width: 992px) {
  .course .row .details h4 {
    font-size: 35px;
  }
}
.course dl {
  margin-top: 20px;
}
.course dl dt {
  background-color: #fff;
  border-left: 7px solid #e95377;
  margin-bottom: 10px;
  padding: 5px 10px;
}

#ao h4 {
  font-size: 16px;
}
@media screen and (min-width: 992px) {
  #ao h4 {
    font-size: 26px;
  }
}
#ao h4 small {
  font-size: 0.73em;
}
#ao .box {
  margin-top: 30px;
}
@media screen and (min-width: 992px) {
  #ao .box {
    margin-top: 50px;
  }
}
#ao .box .inner01 {
  padding: 30px 40px 33px;
  margin-bottom: 30px;
}
#ao .box h3 {
  margin-bottom: 20px;
  font-size: 1.25rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 5px;
  padding: 12px 0 13px;
  background-color: transparent;
  background-image: -moz-linear-gradient(0deg, #1974a5 0%, #8dc9d6 100%);
  background-image: -webkit-linear-gradient(0deg, #1974a5 0%, #8dc9d6 100%);
  background-image: -ms-linear-gradient(0deg, #1974a5 0%, #8dc9d6 100%);
}
@media screen and (min-width: 992px) {
  #ao .box h3 {
    margin-bottom: 40px;
    font-size: 2rem;
  }
}
#ao .box .topTxt {
  margin: -4px 0 42px;
  text-align: center;
}
#ao .box .topTtl {
  margin-bottom: 32px;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) {
  #ao .box .topTtl {
    font-size: 1.5rem;
  }
}
#ao .box .txtUl {
  margin-bottom: 49px;
}
@media screen and (min-width: 992px) {
  #ao .box .txtUl {
    display: flex;
    flex-wrap: wrap;
  }
}
#ao .box .txtUl li {
  width: 100%;
  margin-bottom: 15px;
  padding: 17px 5px 18px 15px;
  box-sizing: border-box;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 992px) {
  #ao .box .txtUl li {
    width: 32%;
  }
}
#ao .box .txtUl li:not(:last-child) {
  margin-right: 18px;
}
#ao .box .txtUl li img {
  position: absolute;
  right: 21px;
  top: 50%;
  width: auto;
  height: 60px;
  margin-top: -30px;
}
#ao .box .txtUl li p {
  padding-left: 55px;
  color: #333;
  font-size: 15px;
  font-weight: bold;
  background: url("../img/icon01.png") no-repeat center left;
  background-size: auto;
  background-size: 40px auto;
}
#ao .box .comBg {
  padding: 15px;
  background-color: #EAE9E7;
}
@media screen and (min-width: 768px), print {
  #ao .box .comBg {
    padding: 30px;
  }
}
#ao .box .txtList {
  /*
  margin: 0 10px;
  */
}
@media screen and (min-width: 992px) {
  #ao .box .txtList {
    display: flex;
    justify-content: space-between;
  }
}
#ao .box .txtList li {
  padding-bottom: 17px;
  text-align: center;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
  #ao .box .txtList li {
    width: 48%;
  }
}
#ao .box .txtList li .title {
  font-size: 1.5rem;
  padding: 13px 0 7px;
  margin-bottom: 17px;
  color: #fff;
  font-weight: bold;
  background-color: #0089CB;
}
#ao .box .txtList li .txt {
  margin-bottom: 13px;
  color: #000;
  font-size: 1.1rem;
}
#ao .box .txtList li .text {
  padding: 14px 0 15px;
  margin: 0 17px;
  margin-bottom: 0px;
  color: #1A1311;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #D4ECF8;
}
#ao .box .txtList li .text:not(:last-child) {
  margin-bottom: 12px;
}
#ao .box .comTab {
  width: 100%;
  border-collapse: collapse;
}
#ao .box .comTab tr th {
  text-align: center;
  background-color: #D3EAF8;
  border-bottom: 1px solid #707070;
  border-left: none;
  padding: 5px;
  width: 21.4%;
  font-weight: 400;
}
#ao .box .comTab tr td {
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  box-sizing: border-box;
  border-bottom: 1px solid #707070;
  border-left: 2px solid #707070;
  background-color: #fff;
  padding: 5px 10px 4px;
  line-height: 1.625;
  border-left: none;
}
@media screen and (min-width: 768px), print {
  #ao .box .comTab tr td {
    padding: 5px 30px 4px;
  }
}
@media screen and (min-width: 768px), print {
  #ao .box .comTab tr:first-child td {
    padding: 16px 30px 14px;
  }
}
#ao .box .comTab tr:last-child th {
  border-bottom: none;
}
#ao .box .comTab tr:last-child td {
  border-bottom: none;
}
#ao .box .row {
  margin-bottom: 0;
}
@media screen and (min-width: 768px), print {
  #ao .box .row li {
    width: 48%;
  }
}
#ao .box .row .title {
  padding: 4px 0 3px;
  text-align: center;
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #0089CB;
}
#ao .box .row .comTab th {
  padding: 15px 5px 17px;
  width: 20.7%;
  line-height: 1.5;
}

#access .section-inner {
  padding-bottom: 0;
}
#access .row {
  display: block;
}
@media screen and (min-width: 992px) {
  #access .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }
}
#access .row .logo {
  text-align: center;
}
#access .row .logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}
#access .row .address {
  line-height: 1.5;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  #access .row .address {
    white-space: nowrap;
  }
}
@media screen and (min-width: 992px) {
  #access .row .address {
    padding-left: 20px;
    text-align: left;
  }
}
#access .row a[href^="tel:"] {
  display: block;
  font-size: 1.75rem;
  padding: 10px 30px;
  background-color: #333;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  #access .row a[href^="tel:"] {
    display: inline-block;
  }
}
#access .row a[href^="tel:"] small {
  display: block;
  font-size: 0.68em;
}
@media screen and (min-width: 751px) {
  #access .row a[href^="tel:"] {
    background-color: transparent;
    padding: 0;
    color: #333;
    pointer-events: none;
  }
}
#access .map {
  line-height: 0;
  background-color: #282828;
}

.linePop {
  background: #2BAB38 !important;
  display: none;
}

.fancybox-slide--html .fancybox-close-small {
    padding: 0;
    right: 15px;
    top: 15px;
    opacity: 1;
    background: url(/wp-content/themes/Rose_Beauty/img/common/pop_close.png) no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    color: #fff;
}


