@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;700&family=Oswald:wght@200;700&display=swap");
/* ===== Normalize =============================================
   normalize.css v2.1.3 | MIT License | git.io/normalize
   ==================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

html {
  background: #fff;
  color: #000;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a {
  background: transparent;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 800;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

q {
  quotes: "“" "”" "‘" "’";
}

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

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
}

button, input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/* ===== scss settings =============================================
   Author:
   ==================================================================== */
/* ===== mixin =============================================
   ==================================================================== */
/* =======================
	Initialize
	======================================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  background: #f2f0e8;
}

body {
  font-family: "Zen Kaku Gothic New", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(1.4rem, 1rem + 0.4vw , 1.6rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  font-smoothing: antialiased;
  box-sizing: border-box;
  background: #f2f0e8;
  color: #333;
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: #f2f0e8;
  --space-xs: clamp(1.0rem, 0.5rem + 0.5vw, 1.875rem);
  --space-sm: calc(var(--space-xs) * 1.5);
  --space-md: calc(var(--space-xs) * 2);
  --space-lg: calc(var(--space-xs) * 3);
  --space-xl: calc(var(--space-xs) * 4);
  --space-xxl: calc(var(--space-xs) * 5);
}
@media only screen and (max-width: 1000px) {
  body {
    -webkit-text-size-adjust: 100%;
    word-wrap: break-word;
  }
}
body.is_mb_menuOpen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

ul {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 1rem;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  margin: 0;
}

a {
  color: #0879d4;
  text-decoration: none;
  transition: color 0.2s ease-in-out, background 0.2s ease-in-out;
}
a:hover {
  color: #888;
  transition: color 0.3s ease-in-out, background 0.3s ease-in-out;
}

hr {
  border: 0;
  height: 0;
  border-top: 1px solid #000;
  margin: 20px 0;
}
@media only screen and (max-width: 767px) {
  hr {
    margin: 12px 0;
  }
}

.ly_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 var(--space-md);
  border-bottom: 2px solid #541B86;
  padding: 0 var(--space-md);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  background: #fff;
  height: 100px;
}
@media only screen and (max-width: 767px) {
  .ly_header {
    height: 50px;
    gap: 0;
    flex-direction: column;
    padding: 0;
    justify-content: center;
  }
}

.ly_footer {
  border-top: 2px solid #541B86;
  background: #fff;
}
.btnPageTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .btnPageTop {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.btnPageTop img {
  width: 100%;
  height: auto;
  display: block;
}

.js-btnPageTop {
  /* 初期状態は非表示 */
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.2s linear;
}

.js-btnPageTop.is_show {
  /* 表示状態 */
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  /* ニョキっと出てきて、ストンと落ちるアニメーション */
  animation: popUp 0.5s ease-in-out;
}

@keyframes popUp {
  0% {
    transform: translateY(50px);
  }
  70% {
    transform: translateY(-10px) scale(1.02);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.ly_content {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .ly_content {
    flex-direction: column;
  }
}

.ly_cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .ly_cover {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
  }
}

.ly_body {
  width: 50%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .ly_body {
    width: 100%;
  }
}

.ly_overlay {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 9998;
}
.is_mbMenuOpen .ly_overlay {
  display: block;
}

.cp_btnArea {
  display: flex;
  gap: 0 10px;
}
.cp_btnArea--center {
  justify-content: center;
}

.cp_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px var(--space-sm);
  height: 44px;
  border-radius: 5px;
  background-color: #541B86;
  color: #f2f0e8;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #000;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cp_btn {
    height: 40px;
  }
}
.cp_btn:hover {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.cp_btn--lg {
  height: 56px;
  font-size: clamp(1.6rem, 1.2rem + 1.0vw , 2.0rem);
}
.cp_btn--cancel {
  background: #eee;
  color: #666;
  border-color: #666;
}
.cp_btn--cancel:hover {
  background: #aaa;
}
.cp_btn--white {
  background: #fff;
  color: #000;
}
.cp_btn--white:hover {
  background: #ddd;
}

.cp_textlink {
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
}
.cp_textlink--sm {
  font-size: clamp(1.2rem, 1.0rem + 0.1vw , 1.4rem);
}
.cp_textlink--hasUl {
  text-decoration: underline;
}
.cp_textlink--hasColor {
  color: #541B86;
}

.cp_logoBox {
  display: flex;
  align-items: center;
  gap: 0 var(--space-sm);
}
.cp_logoBox--footer {
  margin: 0 auto var(--space-xs);
}
.cp_logoBox__link {
  width: 35px;
}
.cp_logoBox__text {
  font-weight: bold;
}
.cp_logoBox img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
}

.cp_facebookPage .fb_iframe_widget {
  display: block;
}
.cp_facebookPage .fb_iframe_widget > span {
  width: 100% !important;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .cp_headNav {
    background: #fff;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: var(--space-md);
    display: none;
  }
  .is_mbMenuOpen .cp_headNav {
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .cp_mainNav {
    order: 1;
  }
}
.cp_mainNav__grp {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 var(--space-xs);
}
@media only screen and (max-width: 767px) {
  .cp_mainNav__grp {
    display: block;
    padding-bottom: var(--space-md);
  }
}
.cp_mainNav__item {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cp_mainNav__item {
    opacity: 0;
  }
  .is_active .cp_mainNav__item {
    animation-name: menuToLeft;
    animation-duration: 0.4s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .cp_mainNav__item:nth-child(1) {
    animation-delay: 0.05s;
  }
  .cp_mainNav__item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .cp_mainNav__item:nth-child(3) {
    animation-delay: 0.15s;
  }
  .cp_mainNav__item:nth-child(4) {
    animation-delay: 0.2s;
  }
  .cp_mainNav__item:nth-child(5) {
    animation-delay: 0.25s;
  }
  .cp_mainNav__item:nth-child(6) {
    animation-delay: 0.3s;
  }
  .cp_mainNav__item:nth-child(7) {
    animation-delay: 0.35s;
  }
  .cp_mainNav__item:nth-child(8) {
    animation-delay: 0.4s;
  }
  .cp_mainNav__item:nth-child(9) {
    animation-delay: 0.45s;
  }
  .cp_mainNav__item:nth-child(10) {
    animation-delay: 0.5s;
  }
}
.cp_mainNav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-sm);
  font-weight: 400;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
}
.cp_mainNav__link::after {
  content: "";
  width: 0%;
  display: block;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: 0.18s ease-in-out;
  border-bottom: 2px solid #541B86;
}
@media only screen and (max-width: 767px) {
  .cp_mainNav__link::after {
    transition: none;
    display: none;
  }
}
.cp_mainNav__link:hover::after {
  transition: 0.12s ease-in-out;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .cp_mainNav__link:hover::after {
    transition: none;
  }
}
.cp_mainNav__link:hover {
  color: #000;
}
@media only screen and (max-width: 1100px) {
  .cp_mainNav__link {
    padding: var(--space-sm) var(--space-xs);
  }
}
@media only screen and (max-width: 1000px) {
  .cp_mainNav__link {
    padding: var(--space-sm) calc(var(--space-xs) / 2);
    font-size: clamp(1.2rem, 1.0rem + 0.2vw , 1.3rem);
  }
}
.cp_mainNav__link--contact {
  background: #541B86;
  color: #fff;
  border-radius: 20px;
}
.cp_mainNav__link--contact::after {
  display: none;
}
.cp_mainNav__link--contact:hover {
  color: #fff;
  background: #0497BF;
}
@media only screen and (max-width: 1000px) {
  .cp_mainNav__link--contact {
    padding: var(--space-sm) var(--space-xs);
  }
}

@keyframes menuToLeft {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.cp_mobileMenuBtn {
  display: none;
}
@media only screen and (max-width: 767px) {
  .cp_mobileMenuBtn {
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 5px;
    display: block;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    padding: 5px 0 0;
  }
  .cp_mobileMenuBtn::after {
    content: "";
    background-image: url(../../img/icon_spmenu.svg);
    display: block;
    background-size: cover;
    width: 44px;
    height: 44px;
  }
  .is_mbMenuOpen .cp_mobileMenuBtn::after {
    background-image: url(../../img/icon_spmenu_close.svg);
  }
}

.cp_footerTop {
  padding: var(--space-md) var(--space-lg) var(--space-xs);
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .cp_footerTop {
    padding: var(--space-sm) var(--space-md);
  }
}

.cp_footer__text {
  font-size: clamp(1.1rem, 1.0rem + 0.1vw , 1.3rem);
  margin: var(--space-md) 0 0;
}
@media only screen and (max-width: 767px) {
  .cp_footer__text {
    line-height: 1.4;
    font-size: clamp(0.9rem, 0.8rem + 0.1vw , 1.1rem);
  }
}

.cp_footerTextlink {
  padding: var(--space-xs) 0 var(--space-lg) 0;
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink {
    width: 100%;
  }
}
.cp_footerTextlink__grp {
  display: flex;
  margin: var(--space-md) 0;
  gap: 0 var(--space-xl);
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink__grp {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }
}
.cp_footerTextlink__grp--sub {
  gap: 0 var(--space-md);
}
.cp_footerTextlink__item {
  display: block;
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink__item {
    width: 50%;
  }
  .cp_footerTextlink__grp--sub .cp_footerTextlink__item {
    width: calc(50% - var(--space-md) / 2);
  }
}
.cp_footerTextlink__item:last-of-type .cp_footerTextlink__link::after {
  display: none;
}
.cp_footerTextlink__link {
  font-weight: bold;
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink__link {
    display: flex;
    padding: var(--space-xs) 0;
    font-size: clamp(1.1rem, 1.0rem + 0.1vw , 1.3rem);
  }
}
.cp_footerTextlink__grp--sub .cp_footerTextlink__link {
  font-weight: normal;
  font-size: clamp(1.1rem, 1.0rem + 0.1vw , 1.3rem);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink__grp--sub .cp_footerTextlink__link {
    font-size: clamp(0.9rem, 0.8rem + 0.1vw , 1.1rem);
  }
}
.cp_footerTextlink__grp--sub .cp_footerTextlink__link::after {
  content: "";
  width: 0px;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: calc(var(--space-sm) * -1 / 2 - 4px);
  z-index: 0;
  border-right: 1px solid #666;
}
@media only screen and (max-width: 767px) {
  .cp_footerTextlink__grp--sub .cp_footerTextlink__link::after {
    transition: none;
    display: none;
  }
}

.cp_footerBottom {
  max-width: 1400px;
  margin: 0 auto;
}
.cp_footerBottom__text {
  font-size: clamp(1.1rem, 1.0rem + 0.1vw , 1.3rem);
  margin-bottom: var(--space-md);
  padding: 0 var(--space-lg);
}
@media only screen and (max-width: 767px) {
  .cp_footerBottom__text {
    line-height: 1.4;
    font-size: clamp(0.9rem, 0.8rem + 0.1vw , 1.1rem);
    padding: 0 var(--space-md);
  }
}

.cp_copyrights {
  background: #541B86;
  color: #fff;
  text-align: center;
}
.cp_copyrights__text {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  font-size: clamp(1.1rem, 1.0rem + 0.1vw , 1.3rem);
  font-family: "Oswald", sans-serif;
}
@media only screen and (max-width: 767px) {
  .cp_copyrights__text {
    font-size: clamp(0.9rem, 0.8rem + 0.1vw , 1.1rem);
  }
}

.cp_contentBlock {
  padding: var(--space-xxl);
}
@media only screen and (max-width: 767px) {
  .cp_contentBlock {
    padding: var(--space-lg);
  }
}
.cp_contentBlock--bgWhite {
  background: #fff;
}

.cp_news__head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.cp_news__title {
  font-weight: bold;
  font-size: clamp(2.0rem, 1.0rem + 1.5vw , 3.4rem);
  margin-bottom: var(--space-xs);
}
.cp_news__titleEn {
  display: block;
  color: #541B86;
  font-size: clamp(1.4rem, 1rem + 0.4vw , 1.6rem);
  font-family: "Oswald", sans-serif;
}

.cp_newsList__item {
  display: block;
  list-style: none;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
.cp_newsList__title {
  font-weight: bold;
  margin-bottom: calc(var(--space-xs) / 2);
}
.cp_newsList__img {
  margin-bottom: var(--space-xs);
}
.cp_newsList__img img {
  width: 100%;
  height: auto;
  display: block;
}

.pr_homeCover {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .pr_homeCover {
    min-height: auto;
    align-items: flex-end;
    padding-bottom: var(--space-sm);
  }
}
.pr_homeCover__img {
  width: 100%;
  height: 100vh;
  position: relative;
}
.pr_homeCover__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.pr_homeCover__title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pr_homeCover__title--white {
  color: #fff;
}
.pr_homeCover__logo {
  width: 100px;
  margin-bottom: var(--space-md);
}
.pr_homeCover__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.pr_homeCover__name {
  font-size: clamp(2.0rem, 1.0rem + 1.5vw , 3.4rem);
  margin-bottom: var(--space-md);
}
@media only screen and (max-width: 767px) {
  .pr_homeCover__name {
    font-size: clamp(1.7rem, 1.0rem + 1.0vw , 2.8rem);
  }
}
.pr_homeCover__scroll {
  display: none;
}
@media only screen and (max-width: 767px) {
  .pr_homeCover__scroll {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    bottom: 20vh;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pr_homeCover__scroll::after {
    content: "";
    position: absolute;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    display: block;
  }
}

@keyframes arrow_to_bottom {
  0% {
    transform: translate(0, -10px);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(0, 0px);
    opacity: 0;
  }
}
.pr_homeTitle {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.pr_homeTitle__logo {
  width: 100px;
  margin: 0 auto var(--space-md);
}
.pr_homeTitle__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.pr_homeTitle__name {
  font-size: clamp(2.0rem, 1.0rem + 1.5vw , 3.4rem);
  margin-bottom: var(--space-md);
}
@media only screen and (max-width: 767px) {
  .pr_homeTitle__name {
    font-size: clamp(1.7rem, 1.0rem + 1.0vw , 2.8rem);
  }
}

.pr_homeAbout {
  text-align: center;
}

/* Slider */
.js_slick {
  width: 100vw;
}

.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;
}

/* Slider */
.slick-slider {
  height: inherit;
}

.slick-list {
  height: inherit;
}
.slick-track {
  height: inherit;
}
.pr_entryCoverThmbs .slick-track {
  transform: unset !important;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 44px;
  width: 44px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 0.5;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg);
}

.slick-prev {
  left: -55px;
}
@media only screen and (max-width: 1400px) {
  .slick-prev {
    left: -20px;
  }
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 10%;
}
@media only screen and (max-width: 1400px) {
  .slick-next {
    right: 50px;
  }
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  transform: rotate(45deg);
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 0.5;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #000;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #541B86;
  opacity: 0.75;
}

.br_inPc {
  display: none;
}
@media only screen and (min-width: 767px) {
  .br_inPc {
    display: inline;
  }
}

.br_inSp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .br_inSp {
    display: inline;
  }
}

.txt_center {
  text-align: center;
}