@charset "UTF-8";
.grecaptcha-badge {
  visibility: hidden;
}

.wf-loading {
  visibility: hidden;
}

.wf-active {
  visibility: visible;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .show_sm {
    display: block;
  }

  .show_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .show_sm {
    display: none;
  }

  .show_pc {
    display: block;
  }
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.popout {
  overflow: hidden;
  position: relative;
  display: block;
}

.popout.active span {
  display: block;
  position: relative;
  animation: popanime 0.5s ease-out forwards;
  /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
}

@keyframes popanime {
  from {
    bottom: -100%;
    /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0px;
    /* 下から0pxに指定 */
  }
}
.textLink {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  display: inline-block;
  opacity: 0.7;
  transition: all 0.4s ease;
}
.textLink:hover {
  opacity: 1;
}
.textLink:hover .rightArrow {
  transform: scale(1.2);
}

.rightArrow {
  transform: scale(1);
  opacity: 0.8;
  transition: all 0.5s ease;
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 20px;
  border: #000 solid 1px;
  text-align: center;
  margin-left: 10px;
  position: relative;
  top: 10px;
  overflow: hidden;
}
.rightArrow img {
  transition: all 0.4s ease;
  width: 20px;
  position: relative;
  display: inline-block;
  top: 6px;
  left: 0px;
}

.engTitle {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.dblWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.DefaultNakaHeaderArea {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  padding: 0 5%;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.DefaultNakaHeaderArea .nakaHeaderBg {
  color: #f4f2f0;
  font-size: 18.5vw;
  letter-spacing: 0.2em;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 15vw;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    top: 32vw;
  }
}
@media screen and (min-width: 1500px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    top: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    left: 15vw;
    top: 26vh;
    transform: rotate(90deg);
    font-size: 15vh;
    letter-spacing: 0.1em;
  }
}
.DefaultNakaHeaderArea .nakaHeaderTitle {
  font-family: baskerville-poster-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  position: absolute;
  top: 28vw;
}
@media screen and (max-width: 768px) {
  .DefaultNakaHeaderArea .nakaHeaderTitle {
    top: 40vw;
  }
}
@media screen and (min-width: 1500px) {
  .DefaultNakaHeaderArea .nakaHeaderTitle {
    top: 18vw;
  }
}
.DefaultNakaHeaderArea .nakaHeaderTitle span {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.DefaultNakaHeaderArea .nakaHeaderTitle span.longText {
  display: block;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  background-color: #fffdf7;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * 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;
}

* {
  margin: 0px;
  padding: 0px;
  font-family: noto-sans-cjk-jp, sans-serif;
  letter-spacing: 1px;
  line-height: 1.75;
  box-sizing: border-box;
  font-size: 16px;
  color: #555;
}

h1 {
  margin: 0;
}

html {
  font-size: 14px;
}

div {
  box-sizing: border-box;
}

.order1 {
  order: 1;
}

.order2 {
  order: 2;
}

.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  padding: 0 3%;
}

.grecaptcha-badge {
  visibility: hidden;
}

.wf-loading {
  visibility: hidden;
}

.wf-active {
  visibility: visible;
}

html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .show_sm {
    display: block;
  }

  .show_pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .show_sm {
    display: none;
  }

  .show_pc {
    display: block;
  }
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.popout {
  overflow: hidden;
  position: relative;
  display: block;
}

.popout.active span {
  display: block;
  position: relative;
  animation: popanime 0.5s ease-out forwards;
  /* 最後ゆっくりになるアニメを1秒かけて1回だけやったあと固定 */
}

@keyframes popanime {
  from {
    bottom: -100%;
    /* 親要素外に配置させて見えなくしておく */
  }
  to {
    bottom: 0px;
    /* 下から0pxに指定 */
  }
}
.textLink {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  color: #000;
  text-decoration: none;
  display: inline-block;
  opacity: 0.7;
  transition: all 0.4s ease;
}
.textLink:hover {
  opacity: 1;
}
.textLink:hover .rightArrow {
  transform: scale(1.2);
}

.rightArrow {
  transform: scale(1);
  opacity: 0.8;
  transition: all 0.5s ease;
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 20px;
  border: #000 solid 1px;
  text-align: center;
  margin-left: 10px;
  position: relative;
  top: 10px;
  overflow: hidden;
}
.rightArrow img {
  transition: all 0.4s ease;
  width: 20px;
  position: relative;
  display: inline-block;
  top: 6px;
  left: 0px;
}

.engTitle {
  font-family: din-condensed, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.dblWrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.DefaultNakaHeaderArea {
  width: 100%;
  height: 60vh;
  min-height: 500px;
  padding: 0 5%;
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.DefaultNakaHeaderArea .nakaHeaderBg {
  color: #f4f2f0;
  font-size: 18.5vw;
  letter-spacing: 0.2em;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 15vw;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    top: 32vw;
  }
}
@media screen and (min-width: 1500px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    top: 6vw;
  }
}
@media screen and (max-width: 480px) {
  .DefaultNakaHeaderArea .nakaHeaderBg {
    left: 15vw;
    top: 26vh;
    transform: rotate(90deg);
    font-size: 15vh;
    letter-spacing: 0.1em;
  }
}
.DefaultNakaHeaderArea .nakaHeaderTitle {
  font-family: baskerville-poster-pt, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  position: absolute;
  top: 28vw;
}
@media screen and (max-width: 768px) {
  .DefaultNakaHeaderArea .nakaHeaderTitle {
    top: 40vw;
  }
}
@media screen and (min-width: 1500px) {
  .DefaultNakaHeaderArea .nakaHeaderTitle {
    top: 18vw;
  }
}
.DefaultNakaHeaderArea .nakaHeaderTitle span {
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.DefaultNakaHeaderArea .nakaHeaderTitle span.longText {
  display: block;
}

.sp_menu {
  z-index: 6000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0;
  opacity: 0;
  color: #000;
  transition: all 0.6s;
  background-color: #fee978;
  visibility: hidden;
  overflow-y: none;
  /*padding-top:90px;*/
  text-align: left;
  padding: 15vh 0 0 0;
  flex-wrap: wrap;
}
.sp_menu__logo {
  position: relative;
  width: 50%;
  margin: 0 auto;
  display: block;
  padding: 0 5%;
}
.sp_menu__logo img {
  width: 100%;
}
.sp_menu.active {
  opacity: 1;
  visibility: visible;
}
.sp_menu .sp_menu_list {
  display: block;
  width: 100%;
  margin: 0;
  list-style: none;
  padding-bottom: 40px;
}
.sp_menu .sp_menu_list__item a {
  display: inline-block;
  padding: 10px 5%;
  font-size: 3.5rem;
  color: #000;
  text-decoration: none;
  line-height: 1.2;
}
.sp_menu .sp_menu_list__item a:hover {
  text-decoration: underline;
}
.sp_menu .walk {
  width: 9%;
  padding-bottom: 10px;
}
.sp_menu .address {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.4rem;
}
.sp_menu .snsArea {
  display: inline-block;
  width: 100%;
  padding: 20px 0 10px 3%;
}
.sp_menu .snsArea a {
  display: inline-block;
  margin: 0 5px;
  opacity: 1;
}
.sp_menu .snsArea a img {
  width: 50px;
  height: 50px;
}
.sp_header_button {
  position: fixed;
  right: 10px;
  top: 0px;
  z-index: 8000;
  width: 60px;
  height: 60px;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
}
.sp_header_button.active {
  position: fixed;
}

/*humberger menu Button*/
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 28px;
  height: 22px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 10px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*action*/
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
  background-color: #000;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
  background-color: #000;
}

@media screen and (max-width: 479px) {
  .sp_header_button {
    display: block;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .sp_header_button {
    display: block;
  }
}
.headerArea {
  width: 100%;
  height: 80px;
  z-index: 100;
  text-align: center;
  padding: 0 0%;
  position: absolute;
}
.headerArea__logo {
  display: inline-block;
  position: relative;
  margin-top: 20px;
  padding-bottom: 5px;
}
.headerArea__logo a img {
  width: 180px;
  height: auto;
}
.headerArea__logo.onMenu a {
  color: #fff;
}
.headerArea__logo.onMenu .typed, .headerArea__logo.onMenu .typed-cursor {
  display: none;
}
.headerArea .headerMenuArea {
  width: 100%;
  margin-bottom: 10px;
  padding: 9px 0;
  border-top: #000 solid 1px;
  border-bottom: #000 solid 1px;
  background-color: #fffdf7;
  color: #333;
}
.headerArea .headerMenuArea .headerMenuItem {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  margin: 0 5px;
}
.headerArea .headerMenuArea .headerMenuItem:hover {
  text-decoration: underline;
}

@media screen and (max-width: 479px) {
  .headerArea {
    height: 80px;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  .headerArea {
    height: 80px;
  }
}
footer {
  width: 100%;
  min-height: 150px;
  padding-bottom: 20px;
  background-color: #fee978;
  position: relative;
  text-align: center;
}
footer .footerArea {
  width: 100%;
  text-align: center;
  padding: 100px 0 30px 0;
}
footer .footerArea .walk {
  width: 10%;
  max-width: 100px;
  display: inline;
  position: relative;
  left: 0px;
  padding-bottom: 20px;
}
@media screen and (max-width: 960px) {
  footer .footerArea .walk {
    width: 15%;
    padding-bottom: 20px;
  }
}
footer .footerArea .footerLogo {
  width: 60%;
  max-width: 660px;
  display: block;
  margin: 12px auto 0 auto;
  padding-top: 0px;
}
@media screen and (max-width: 960px) {
  footer .footerArea .footerLogo {
    width: 70%;
  }
}
footer .footerArea .address {
  display: block;
  padding-top: 20px;
  font-size: 1.4rem;
  margin-top: 10px;
  color: #000;
  line-height: 1.4;
  letter-spacing: 1px;
}
@media screen and (max-width: 960px) {
  footer .footerArea .address {
    font-size: 1.1rem;
  }
}
footer .footerArea .footerLink {
  width: 100%;
  bottom: 20px;
  left: 0;
  list-style: none;
  padding-top: 30px;
}
footer .footerArea .footerLink li {
  padding: 4px 0;
}
footer .footerArea .footerLink a {
  color: #000;
  text-decoration: none;
  font-size: 1.6rem;
  margin: 0 0px;
  transition: all 0.4s ease;
}
footer .footerArea .footerLink a:hover {
  text-decoration: underline;
}
footer .footerArea .copyright {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
}
footer .footerArea .copyright a {
  font-size: inherit;
  color: #000;
  text-decoration: none;
}
footer .footerArea .copyright a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  footer .footerArea .copyright {
    font-size: 1rem;
  }
}

.footerSnsArea {
  display: inline-block;
  width: 100%;
  padding: 40px 0 10px 0;
}
.footerSnsArea a {
  display: inline-block;
  margin: 0 5px;
  opacity: 1;
}
.footerSnsArea a img {
  width: 50px;
  height: 50px;
}
.contactLinkWrapper {
  min-height: 300px;
  width: 100%;
  background-color: #eee;
  border-top: #ddd solid 1px;
  transition: all 0.6s ease-in-out;
}
.contactLinkWrapper:hover {
  background-color: #ddd;
}

.contactLink {
  padding: 120px 5% 180px 5%;
  position: relative;
  text-align: left;
}
.contactLink__eng {
  display: block;
  padding: 50px 0 10px 0;
}
.contactLink__title {
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 2px;
}
@media screen and (max-width: 980px) {
  .contactLink__title {
    font-size: 2rem;
  }
}
.contactLink__link {
  color: #000;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.contactLink__link:after {
  background: url(../img/common/right_arrow.svg) no-repeat;
  background-size: 50px;
  content: "";
  width: 100px;
  height: 60px;
  display: inline;
  transition: transform 0.6s ease;
}
.contactLink__link:hover:after {
  transform: translateX(50px);
}
@media screen and (max-width: 640px) {
  .contactLink {
    padding: 10px 10%;
  }
  .contactLink__title {
    font-size: 2rem;
  }
}

/*
lozad animations
*/
.lozad, .lozad2 {
  opacity: 0;
}

.fade {
  animation-name: fade;
  animation-duration: 1s;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*fade*/
.fadeUp {
  animation-name: fadeUp;
  animation-duration: 1s;
}

@keyframes fadeUp {
  from {
    position: relative;
    top: 60px;
    opacity: 0;
  }
  to {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
/*fadeUp*/
.fadeUpAbs {
  animation-name: fadeUpAbs;
  animation-duration: 1s;
}

@keyframes fadeUpAbs {
  from {
    position: absolute;
    top: 30px;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 0px;
    opacity: 1;
  }
}
/*fadeUpAbs*/
.fadeUpAbsToCenter {
  animation-name: fadeUpAbsToCenter;
  animation-duration: 1.5s;
}

@keyframes fadeUpAbsToCenter {
  from {
    position: absolute;
    top: 55%;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 50% px;
    opacity: 1;
  }
}
/*fadeUpAbs*/
.fadeDown {
  animation-name: fadeDown;
  animation-duration: 1s;
}

@keyframes fadeDown {
  from {
    position: relative;
    top: -20px;
    opacity: 0;
  }
  to {
    position: relative;
    top: 0px;
    opacity: 1;
  }
}
/*fadeDown*/
.fadeDownAbs {
  animation-name: fadeDownAbs;
  animation-duration: 1s;
}

@keyframes fadeDownAbs {
  from {
    position: absolute;
    top: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    top: 0px;
    opacity: 1;
  }
}
/*fadeDownAbs*/
.fadeLeftAbs {
  animation-name: fadeLeftAbs;
  animation-duration: 1s;
}

@keyframes fadeLeftAbs {
  from {
    position: absolute;
    right: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    right: 0px;
    opacity: 1;
  }
}
/*fadeLeftAbs*/
.fadeLeft {
  animation-name: fadeLeft;
  animation-duration: 1s;
}

@keyframes fadeLeft {
  from {
    position: relative;
    right: -30px;
    opacity: 0;
  }
  to {
    position: relative;
    right: 0px;
    opacity: 1;
  }
}
/*fadeLeft*/
.fadeRight {
  animation-name: fadeRight;
  animation-duration: 1s;
}

@keyframes fadeRight {
  from {
    position: relative;
    left: -30px;
    opacity: 0;
  }
  to {
    position: relative;
    left: 0px;
    opacity: 1;
  }
}
/*fadeRight*/
.fadeRightAbs {
  animation-name: fadeRightAbs;
  animation-duration: 1s;
}

@keyframes fadeRightAbs {
  from {
    position: absolute;
    left: -30px;
    opacity: 0;
  }
  to {
    position: absolute;
    left: 0px;
    opacity: 1;
  }
}
/*fadeRightAbs*/
.fadeScale {
  animation-name: fadeScale;
  animation-duration: 1s;
}

@keyframes fadeScale {
  from {
    transform: scale(1.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/*fadeRightAbs*/
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 回転する要素のスタイル */
.rotate {
  animation: rotateAnimation 20s linear infinite;
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.maparea iframe {
  display: block;
  min-height: 600px;
  -webkit-filter: grayscale(1) !important;
  filter: grayscale(1) !important;
}

#toppage .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 0 0px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#toppage .kv {
  width: 100%;
  height: 65vw;
  max-height: 1000px;
  overflow: visible;
  position: relative;
}
@media screen and (max-width: 960px) {
  #toppage .kv {
    height: 100vw;
  }
}
#toppage .kv .kvimage {
  display: block;
  width: 70%;
  position: relative;
  position: absolute;
  top: 30px;
  left: 28%;
  transition: all 0.8s ease-out;
}
@media screen and (max-width: 960px) {
  #toppage .kv .kvimage {
    width: 95%;
    top: 15%;
    left: 5%;
  }
}
#toppage .kv .kvtextArea {
  position: absolute;
  width: 100%;
}
#toppage .kv .kvtextArea .kvTextPc {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #toppage .kv .kvtextArea .kvTextPc {
    display: none;
  }
}
#toppage .kv .kvtextArea .kvTextSp {
  display: none;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #toppage .kv .kvtextArea .kvTextSp {
    display: block;
  }
}
#toppage .kv .badge {
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 220px;
}
#toppage .kv .badge .badgeBg {
  width: 100%;
  display: block;
}
#toppage .kv .badge .badgeText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  display: block;
}
@media screen and (max-width: 680px) {
  #toppage .kv .badge {
    width: 150px;
    bottom: -80px;
    left: unset;
    right: 6%;
  }
}
#toppage .aboutArea {
  width: 100%;
  padding-top: 100px;
  min-height: 500px;
}
#toppage .aboutArea .dblWrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
}
#toppage .aboutArea .dblWrapper .imageArea {
  background: url("/img/toppage/orange_pc.svg") left bottom no-repeat;
  width: 50%;
  text-align: right;
  position: relative;
  padding: 0;
  min-height: 500px;
}
@media screen and (max-width: 865px) {
  #toppage .aboutArea .dblWrapper .imageArea {
    background: url("/img/toppage/orange_sp_1.svg") left bottom no-repeat;
    background-size: cover;
  }
}
#toppage .aboutArea .dblWrapper .imageArea .aboutImage {
  width: 78%;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 10vh 0 0 0;
}
#toppage .aboutArea .dblWrapper .imageArea .aboutImage img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 865px) {
  #toppage .aboutArea .dblWrapper .imageArea .aboutImage {
    position: relative;
    top: 10vw;
  }
}
@media screen and (max-width: 865px) {
  #toppage .aboutArea .dblWrapper .imageArea {
    width: 100%;
    text-align: center;
    margin-bottom: 20vw;
  }
}
#toppage .aboutArea .dblWrapper .textArea {
  width: 50%;
  padding-bottom: 90px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
#toppage .aboutArea .dblWrapper .textArea .logo {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
#toppage .aboutArea .dblWrapper .textArea .logo img {
  width: 260px;
  display: inline-block;
}
#toppage .aboutArea .dblWrapper .textArea .aboutText {
  text-align: left;
  padding: 0 5%;
  max-width: 450px;
  margin: 0 auto 25px auto;
  color: #333;
}
@media screen and (max-width: 865px) {
  #toppage .aboutArea .dblWrapper .textArea {
    width: 100%;
    padding: 0 5% 90px 5%;
  }
  #toppage .aboutArea .dblWrapper .textArea .aboutText {
    max-width: unset;
  }
}
#toppage .monoArea {
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background-color: #000;
}
@media screen and (max-width: 865px) {
  #toppage .monoArea {
    height: 50vh;
  }
}
#toppage .monoArea .monoPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}
#toppage .archiveArea {
  width: 100%;
  background: url("/img/toppage/green_pc.svg") right top no-repeat;
  background-size: auto 450px;
  min-height: 500px;
}
@media screen and (max-width: 780px) {
  #toppage .archiveArea {
    background-position: 10% top;
  }
}
#toppage .archiveArea .dblWrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
#toppage .archiveArea .imgArea {
  width: 50%;
  padding: 80px 0 80px 0;
  text-align: center;
}
@media screen and (max-width: 865px) {
  #toppage .archiveArea .imgArea {
    width: 100%;
    text-align: center;
  }
}
#toppage .archiveArea .imgArea .archiveImage {
  width: 50%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
#toppage .archiveArea .imgArea .archiveImage img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 865px) {
  #toppage .archiveArea .imgArea .archiveImage {
    width: 60%;
    margin: 40px 0 0 0;
    max-width: unset;
  }
}
#toppage .archiveArea .imgArea .archiveImage2 {
  width: 50%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
}
#toppage .archiveArea .imgArea .archiveImage2 img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 865px) {
  #toppage .archiveArea .imgArea .archiveImage2 {
    width: 75%;
    margin: 0 0 0 25%;
    max-width: unset;
  }
}
#toppage .archiveArea .textArea {
  width: 50%;
  padding: 17% 3% 0 5%;
  text-align: left;
}
#toppage .archiveArea .textArea .sectionTitle span {
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
}
#toppage .archiveArea .textArea .sectionTitleSub {
  opacity: 0.6;
  color: #8a7d70;
  font-weight: bold;
  font-size: 0.92rem;
  padding-bottom: 30px;
}
#toppage .archiveArea .textArea .des {
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 865px) {
  #toppage .archiveArea .textArea {
    width: 100%;
    padding: 0 5% 90px 5%;
  }
}
#toppage .collaboArea {
  width: 100%;
  background: url("/img/toppage/bktile.gif") repeat;
}
#toppage .collaboArea .collaboImage {
  width: 100%;
  height: 75vh;
  overflow: hidden;
  background-color: #000;
}
#toppage .collaboArea .collaboImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}
@media screen and (max-width: 865px) {
  #toppage .collaboArea .collaboImage {
    height: 50vh;
  }
}
#toppage .collaboArea .textArea {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10% 3% 10% 5%;
  text-align: left;
}
#toppage .collaboArea .textArea .sectionTitle span {
  color: #fff;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 865px) {
  #toppage .collaboArea .textArea .sectionTitle span {
    font-size: 4rem;
  }
}
#toppage .collaboArea .textArea .sectionTitleSub span {
  color: #fff !important;
  opacity: 0.6;
  font-weight: bold;
  font-size: 0.92rem;
  padding-bottom: 30px;
}
#toppage .collaboArea .textArea .textDesArea {
  max-width: 450px;
  margin-bottom: 20px;
  position: relative;
  left: 50%;
  padding-top: 60px;
}
#toppage .collaboArea .textArea .des {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (max-width: 865px) {
  #toppage .collaboArea .textArea {
    width: 100%;
    padding: 10% 5% 90px 5%;
  }
  #toppage .collaboArea .textArea .textDesArea {
    max-width: unset;
    padding-top: 40px;
    left: 0%;
  }
}
#toppage .eventArea {
  width: 100%;
}
#toppage .eventArea .dblWrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10% 5%;
}
#toppage .eventArea .dblWrapper .left {
  width: 50%;
}
#toppage .eventArea .dblWrapper .right {
  width: 50%;
}
#toppage .eventArea .dblWrapper .sectionTitle span {
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
}
#toppage .eventArea .dblWrapper .sectionTitleSub span {
  opacity: 0.6;
  font-weight: bold;
  font-size: 0.92rem;
  padding-bottom: 30px;
}
@media screen and (max-width: 865px) {
  #toppage .eventArea .dblWrapper .left, #toppage .eventArea .dblWrapper .right {
    width: 100%;
  }
}
#toppage .eventArea .eventList {
  list-style: none;
  width: 100%;
  overflow: hidden;
  padding: 0 3% 2% 3%;
}
#toppage .eventArea .eventList .eventBox {
  display: block;
  width: 95%;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #toppage .eventArea .eventList .eventBox {
    width: 100%;
  }
}
#toppage .eventArea .eventList .eventBox .inner {
  width: 90%;
}
#toppage .eventArea .eventList .eventBox__img {
  width: 100%;
  overflow: hidden;
  display: block;
}
#toppage .eventArea .eventList .eventBox__img:hover img {
  transform: scale(1.05);
}
#toppage .eventArea .eventList .eventBox__img img {
  transition: all 0.4s ease;
  width: 100%;
  display: block;
}
#toppage .eventArea .eventList .eventBox__text {
  width: 100%;
  padding: 10px 0 0 0;
}
#toppage .eventArea .eventList .eventBox .title {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 5px 0 5px 0;
  line-height: 1.5;
  text-decoration: none;
  display: block;
}
#toppage .eventArea .eventList .eventBox .title:hover {
  text-decoration: underline;
}
#toppage .eventArea .eventList .eventBox .date {
  font-size: 1.1rem;
  color: #666;
  display: block;
}
#toppage .eventArea .eventList .eventBox .des {
  font-size: 1rem;
  display: block;
  color: #333;
  padding-right: 10px;
}
#toppage .eventArea .slider-controls {
  padding: 0% 5% 10% 5%;
  width: 100%;
  text-align: right;
}
#toppage .eventArea .slider-controls .js-slider-prev, #toppage .eventArea .slider-controls .js-slider-next {
  cursor: pointer;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
  background-color: #555;
  display: inline-block;
  padding-top: 14px;
  width: 55px;
  height: 55px;
  text-align: center;
  border-radius: 80px;
  transition: all 0.3s ease-in-out;
}
#toppage .eventArea .slider-controls .js-slider-prev:hover, #toppage .eventArea .slider-controls .js-slider-next:hover {
  background-color: #000;
}
#toppage .NabataArea {
  width: 100%;
}
#toppage .NabataArea .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 10% 5%;
}
#toppage .NabataArea .container .sectionTitle span {
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
}
#toppage .NabataArea .dblWrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 0 0 0;
}
#toppage .NabataArea .dblWrapper .imageArea {
  overflow: hidden;
  text-align: center;
  width: 50%;
}
#toppage .NabataArea .dblWrapper .imageArea img {
  display: inline-block;
  margin-top: 5%;
}
#toppage .NabataArea .dblWrapper .textArea {
  width: 50%;
}
#toppage .NabataArea .dblWrapper .textArea .name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 865px) {
  #toppage .NabataArea .dblWrapper {
    flex-direction: column;
  }
  #toppage .NabataArea .dblWrapper .imageArea {
    width: 100%;
    margin-bottom: 30px;
  }
  #toppage .NabataArea .dblWrapper .textArea {
    width: 100%;
  }
}

.visitArea .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5% 5% 12% 5%;
  display: flex;
  flex-wrap: wrap;
}
.visitArea .container .left {
  width: 50%;
  text-align: left;
  padding-bottom: 50px;
}
.visitArea .container .left .sectionTitle span {
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
}
.visitArea .container .right {
  width: 50%;
  text-align: left;
}
.visitArea .container .des {
  display: inline-block;
  padding-bottom: 20px;
  font-size: 1.1rem;
}
.visitArea .container .visitTitle {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.visitArea .container .visitList {
  width: 100%;
  padding-left: 10%;
}
.visitArea .container .caption {
  font-size: 0.95rem;
  color: #666;
  margin-top: 10px;
}
@media screen and (max-width: 865px) {
  .visitArea .container {
    padding-top: 10%;
  }
  .visitArea .container .left, .visitArea .container .right {
    width: 100%;
  }
}

.breadAreaWrapper {
  width: 100%;
  padding: 5px 0;
}

.breadArea {
  font-size: 1rem;
  color: #999;
  text-transform: uppercase;
}
.breadArea span {
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.breadArea .breadItem {
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
.breadArea .breadItem:hover {
  text-decoration: underline;
  color: #333;
}

.newsIndexWrapper {
  border-bottom: #e0e1e1 solid 1px;
}
.newsIndexWrapper .newsIndex {
  list-style: none;
  width: 80%;
  margin-left: 20%;
  box-sizing: border-box;
  padding: 0 3%;
}
.newsIndexWrapper .newsIndex__item {
  width: 100%;
  border-bottom: #e0e1e1 solid 1px;
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
}
.newsIndexWrapper .newsIndex__item:last-child {
  border-bottom: none;
}
.newsIndexWrapper .newsIndex__date {
  width: 30%;
}
.newsIndexWrapper .newsIndex__title {
  width: 70%;
  text-decoration: none;
  color: #000;
  display: block;
}
.newsIndexWrapper .newsIndex__title:hover {
  text-decoration: underline;
  color: #df2513;
}
@media screen and (max-width: 768px) {
  .newsIndexWrapper .newsIndex {
    width: 100%;
    margin-left: 0;
  }
  .newsIndexWrapper .newsIndex__item {
    margin-bottom: 40px;
  }
  .newsIndexWrapper .newsIndex__date {
    width: 100%;
    padding-bottom: 5px;
  }
  .newsIndexWrapper .newsIndex__title {
    width: 100%;
    padding-bottom: 15px;
  }
}

.newsArticleWrapper {
  overflow: hidden;
}
.newsArticleWrapper .container {
  display: flex;
  flex-wrap: wrap;
  padding: 5% 5%;
  padding-bottom: 120px;
}
.newsArticleWrapper .left {
  width: 30%;
}
.newsArticleWrapper .right {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .newsArticleWrapper .left {
    width: 100%;
  }
  .newsArticleWrapper .right {
    width: 100%;
  }
}
.newsArticleWrapper .article__date {
  font-size: 0.9rem;
  position: relative;
  top: 6px;
  color: #a38963;
}
.newsArticleWrapper .article__title {
  font-size: 1.7rem;
  font-family: a-otf-ryumin-pr6n, serif;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 40px;
}
.newsArticleWrapper .article p {
  line-height: 1.8;
  padding-bottom: 5%;
}
.newsArticleWrapper .article img {
  width: 100%;
  margin-bottom: 5%;
}
.newsArticleWrapper .article a {
  color: #a38963;
  font-size: inherit;
}
.newsArticleWrapper .article ul, .newsArticleWrapper .article ol {
  padding: 30px 0;
}
.newsArticleWrapper .article li {
  padding: 5px 0;
  font-size: 1.5rem;
  line-height: 1.7;
}

#errorPage {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.errorMessageArea {
  overflow: hidden;
  width: 100%;
  text-align: center;
  padding: 200px 5% 200px 5%;
}
.errorMessageArea .title {
  font-size: 1.8rem;
  padding: 20px;
}
.errorMessageArea .des {
  font-size: 1rem;
  color: #666;
}
.errorMessageArea .toppageLink {
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 6px;
  background-color: #fee978;
  color: #000;
  font-size: 1rem;
  font-weight: bold;
}
.errorMessageArea .toppageLink:hover {
  background-color: #000;
  color: #fff;
}

/* //// PAGENATION  paginate_links ///// */
div.pagenationArea {
  text-align: center;
  padding: 120px 0;
  width: 100%;
}

div.pagenationArea a {
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  padding: 12px 15px;
  color: #000;
}

div.pagenationArea a:hover {
  background-color: #000;
  color: #fffdf7;
  border-radius: 10px;
  opacity: 0.4;
}

ul.page-numbers {
  list-style: none;
}

ul.page-numbers li {
  display: inline-block;
}

span.page-numbers.current {
  text-decoration: none;
  display: inline-block;
  font-size: 1.2rem;
  padding: 12px 15px;
  background-color: #000;
  color: #fffdf7;
  border-radius: 10px;
}

@media screen and (max-width: 479px) {
  div.newsbox {
    margin: 0;
    border-bottom: #ccc solid 1px;
  }

  div.newsTextArea p.news_short_des {
    display: none;
  }

  div.newsTextArea {
    width: 62%;
  }

  div.newsTextArea a {
    font-size: 85%;
    line-height: 1.5;
  }

  img.newsThumb {
    width: 35%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  div.newsbox {
    margin: 0;
    border-bottom: #ccc solid 1px;
  }

  div.newsTextArea p.news_short_des {
    display: none;
  }

  div.newsTextArea {
    width: 67%;
  }

  div.newsTextArea a {
    font-size: 90%;
    line-height: 1.5;
  }
}
.prevNextArea {
  width: 100%;
  padding: 5% 3%;
}
.prevNextArea .pagenavi {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
.prevNextArea .pagenavi:after {
  display: block;
  content: "";
  width: 30%;
}
.prevNextArea .pagenavi__item {
  width: 30%;
  display: block;
}
.prevNextArea .pagenavi__item a {
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  padding: 15px 20px;
  padding: 10px;
  color: #333;
}
.prevNextArea .pagenavi__item.prev {
  text-align: left;
}
.prevNextArea .pagenavi__item.prev a {
  background-color: #edede8;
  color: #333;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.prevNextArea .pagenavi__item.prev a:hover {
  background-color: #333;
  color: #fffdf7;
}
.prevNextArea .pagenavi__item.prev a:before {
  display: inline;
  content: "<";
  padding-right: 15px;
}
@media screen and (max-width: 680px) {
  .prevNextArea .pagenavi__item.prev a {
    padding: 2vw 3.5vw;
    font-size: 1rem;
    border-radius: 8px;
  }
  .prevNextArea .pagenavi__item.prev a:before {
    padding-right: 6px;
  }
}
.prevNextArea .pagenavi__item.index {
  text-align: center;
}
.prevNextArea .pagenavi__item.index a {
  background-color: #edede8;
  color: #333;
  padding: 12px 40px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.prevNextArea .pagenavi__item.index a:hover {
  background-color: #333;
  color: #fffdf7;
}
@media screen and (max-width: 680px) {
  .prevNextArea .pagenavi__item.index a {
    padding: 2vw 3.5vw;
    font-size: 1rem;
    border-radius: 8px;
    line-height: 1.4;
  }
}
.prevNextArea .pagenavi__item.next {
  text-align: right;
}
.prevNextArea .pagenavi__item.next a {
  background-color: #edede8;
  color: #333;
  padding: 12px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.prevNextArea .pagenavi__item.next a:hover {
  background-color: #333;
  color: #fffdf7;
}
.prevNextArea .pagenavi__item.next a:after {
  display: inline;
  content: ">";
  padding-left: 15px;
}
@media screen and (max-width: 680px) {
  .prevNextArea .pagenavi__item.next a {
    padding: 2vw 3.5vw;
    font-size: 1rem;
    border-radius: 8px;
  }
  .prevNextArea .pagenavi__item.next a:after {
    padding-left: 6px;
  }
}

.tapeArea {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 50px;
}

.streaming-img, .streaming-img2, .streaming-img3, .streaming-img4 {
  position: relative;
  background-image: url(../img/test/tape.svg);
  background-repeat: repeat-x;
  background-size: auto 100%;
  width: 110%;
  left: -5%;
  height: 80px;
  background-color: #00a9d2;
  transform: rotate(-17deg);
}

.stone {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.ono {
  position: absolute;
  top: 800px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.kv {
  width: 100%;
  height: 78vw;
  margin-top: 20px;
  overflow-y: visible;
  overflow-x: hidden;
  position: relative;
}
.kv .kvimage {
  display: block;
  width: 70%;
  position: relative;
  position: absolute;
  top: 20px;
  left: 35%;
}
.kv .kvTextArea {
  position: absolute;
  width: 78%;
  top: 30vw;
  left: 5%;
}
.kv .kvTextArea .kv_cast {
  display: block;
  width: 30%;
  margin-bottom: 20px;
}
.kv .kvTextArea .kv_title {
  display: block;
  width: 55%;
}
.kv .kvDateArea {
  position: absolute;
  width: 50%;
  top: 45vw;
  left: 6%;
  text-align: left;
}
.kv .kvDateArea .date {
  display: block;
  font-size: 2.3rem;
  margin-bottom: -10px;
  color: #000;
}
.kv .kvDateArea .place {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #000;
}
.kv .kvDateArea .cast {
  display: block;
  font-size: 1.6rem;
  margin-bottom: -10px;
  color: #000;
}
.kv .kvLink {
  position: absolute;
  top: 80%;
  left: 6%;
}

.roundButton {
  display: inline-block;
  background-color: #000;
  border-radius: 70px;
  font-weight: bold;
  text-align: left;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.4s ease;
  padding: 18px 90px 18px 30px;
}
.roundButton:hover {
  background-color: #ffe900;
  color: #000;
}

#journal .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 3% 0px 3%;
  position: relative;
}
#journal .topBannerArea {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  margin-top: 20px;
  overflow: hidden;
}
#journal .topBannerArea img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 960px) {
  #journal .topBannerArea {
    margin-bottom: 0px;
  }
}
#journal .archiveTitleArea {
  width: 100%;
  margin: 0;
  padding: 60px 3% 70px 0%;
  border-bottom: #333 solid 1px;
}
#journal .archiveTitleArea .archiveTitle {
  font-size: 5rem;
  color: #333;
}
#journal .articleWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 700px;
  border-bottom: #333 solid 2px;
}
#journal .mainArticle {
  width: 66%;
  min-height: 400px;
  padding: 0px 0;
}
#journal .subArticles {
  width: 33%;
  min-height: 900px;
  border-left: #333 solid 1px;
  padding: 2%;
}
@media screen and (max-width: 960px) {
  #journal .mainArticle {
    width: 100%;
    margin-bottom: 30px;
    border-left: none;
    border-bottom: #333 solid 1px;
  }
  #journal .mainArticle:last-child {
    border-bottom: #333 solid 1px;
  }
  #journal .subArticles {
    width: 100%;
    margin-bottom: 30px;
    border-left: none;
    border-bottom: none;
  }
}
#journal .mainArticleBox {
  display: block;
  border-bottom: #333 solid 1px;
  padding: 3%;
  min-height: 600px;
  width: 100%;
  margin-bottom: 15px;
}
#journal .mainArticleBox:last-child {
  border-bottom: none;
}
@media screen and (max-width: 960px) {
  #journal .mainArticleBox {
    padding: 3% 0;
  }
}
#journal .mainArticleBox .categoryArea {
  margin-bottom: 10px;
}
#journal .mainArticleBox .categoryArea .category {
  font-size: 1rem;
  margin-right: 5px;
  margin-left: 5px;
  color: #8a7d70;
  text-transform: uppercase;
}
#journal .mainArticleBox .categoryArea .category:hover {
  text-decoration: underline;
}
#journal .mainArticleBox__title {
  display: block;
  padding-bottom: 15px;
  padding-right: 3%;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}
#journal .mainArticleBox__des {
  margin-bottom: 15px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: #333;
}
#journal .mainArticleBox__img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
  position: relative;
  display: block;
  padding: 0;
}
#journal .mainArticleBox__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}
#journal .mainArticleBox__img:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
#journal .subArticleBox {
  display: block;
  width: 100%;
  padding: 20px 0 20px 0;
  border-bottom: #333 solid 1px;
}
#journal .subArticleBox:last-child {
  border-bottom: none;
}
#journal .subArticleBox .categoryArea {
  margin-bottom: 10px;
}
#journal .subArticleBox .categoryArea .category {
  font-size: 1rem;
  margin-right: 5px;
  margin-left: 5px;
  color: #8a7d70;
  text-transform: uppercase;
}
#journal .subArticleBox .categoryArea .category:hover {
  text-decoration: underline;
}
#journal .subArticleBox__title {
  display: block;
  padding-bottom: 15px;
  padding-right: 3%;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}
#journal .subArticleBox__des {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
#journal .subArticleBox__img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
}
#journal .subArticleBox__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}
#journal .subArticleBox__img:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
#journal .playIcon {
  position: absolute;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #ffa93c;
  right: 5%;
  bottom: 10%;
}
#journal .playIcon img {
  width: 100%;
}
#journal .columnArticleArea {
  border-top: #333 solid 2px;
  position: relative;
  padding-bottom: 5%;
  width: 100%;
}
#journal .columnArticleArea.noTopBorder {
  border-top: none;
  padding-top: 25px;
}
#journal .columnArticleArea__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 40px 0 20px 0;
  text-transform: uppercase;
}
#journal .columnArticleArea .articlesPageLink {
  display: inline-block;
  position: absolute;
  right: 2%;
  top: 40px;
  padding: 10px 30px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fffdf7;
  background-color: #333;
  border-radius: 50px;
  text-decoration: none;
}
#journal .columnArticleArea .articlesPageLink:hover {
  opacity: 0.7;
}
#journal .columnArticleArea .columnArticles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#journal .columnArticleArea .columnArticles:after {
  content: "";
  display: block;
  width: calc(32%);
  /* .flex-itemと同じ幅を指定 */
}
#journal .columnArticleArea .columnArticleBox {
  width: 32%;
  display: block;
  margin-bottom: 40px;
}
#journal .columnArticleArea .columnArticleBox:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 960px) {
  #journal .columnArticleArea .columnArticleBox {
    width: 100%;
  }
}
#journal .columnArticleArea .columnArticleBox__img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
  position: relative;
  display: block;
  padding: 0;
  aspect-ratio: 3/2;
}
#journal .columnArticleArea .columnArticleBox__img img {
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}
#journal .columnArticleArea .columnArticleBox__img:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
#journal .columnArticleArea .columnArticleBox__title {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  text-decoration: underline;
}
#journal .columnArticleArea .columnArticleBox__des {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}
#journal .columnArticleArea .columnArticleBox .categoryArea {
  margin-bottom: 10px;
}
#journal .columnArticleArea .columnArticleBox .categoryArea .category {
  font-size: 1rem;
  margin-right: 5px;
  margin-left: 5px;
  color: #8a7d70;
  text-transform: uppercase;
}
#journal .columnArticleArea .columnArticleBox .categoryArea .category:hover {
  text-decoration: underline;
}
#journal .archivesArea {
  width: 100%;
  border-top: #333 solid 2px;
  position: relative;
  padding-top: 30px;
}
#journal .archivesArea.noTopBorder {
  border-top: none;
  padding-top: 25px;
}
#journal .archivesArea__title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 20px 0;
  text-transform: uppercase;
}
#journal .archivesArea .articlesPageLink {
  display: inline-block;
  position: absolute;
  right: 2%;
  top: 50px;
  padding: 10px 30px;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fffdf7;
  background-color: #333;
  border-radius: 50px;
  text-decoration: none;
}
#journal .archivesArea .articlesPageLink:hover {
  opacity: 0.7;
}
#journal .archivesArea .archiveArticleBox {
  width: 100%;
  border-bottom: #333 solid 1px;
  margin-bottom: 10px;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#journal .archivesArea .archiveArticleBox:last-child {
  border-bottom: none;
}
#journal .archivesArea .archiveArticleBox .right {
  width: 40%;
}
#journal .archivesArea .archiveArticleBox .left {
  width: 60%;
  padding: 0 3% 0 0;
}
@media screen and (max-width: 960px) {
  #journal .archivesArea .archiveArticleBox .right {
    width: 100%;
    margin-bottom: 15px;
  }
  #journal .archivesArea .archiveArticleBox .left {
    width: 100%;
    padding: 0 0 20px 0;
  }
}
#journal .archivesArea .archiveArticleBox__img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
  position: relative;
  display: block;
  padding: 0;
  aspect-ratio: 3/2;
}
#journal .archivesArea .archiveArticleBox__img img {
  width: 100%;
  height: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}
#journal .archivesArea .archiveArticleBox__img:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
#journal .archivesArea .archiveArticleBox .categoryArea {
  margin-bottom: 10px;
}
#journal .archivesArea .archiveArticleBox .categoryArea .category {
  font-size: 1rem;
  margin-right: 5px;
  margin-left: 5px;
  color: #8a7d70;
  text-transform: uppercase;
}
#journal .archivesArea .archiveArticleBox__title {
  display: block;
  padding-bottom: 15px;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #333;
  text-decoration: underline;
}
#journal .archivesArea .archiveArticleBox__des {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #333;
}
#journal .singleArticleContainer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 3% 0px 3%;
  position: relative;
}
#journal .singleArticleWrapper {
  min-height: 600px;
  width: 100%;
  padding: 8% 0;
}
#journal .singleArticleWrapper .movieBox {
  width: 100%;
  margin-bottom: 50px;
}
#journal .singleArticleWrapper .movieBox iframe {
  width: 100%;
  height: 500px;
}
@media screen and (max-width: 600px) {
  #journal .singleArticleWrapper .movieBox iframe {
    height: 300px;
  }
}
#journal .singleArticleWrapper .singleArticleBox {
  width: 100%;
  display: block;
  padding-bottom: 50px;
  text-align: center;
}
#journal .singleArticleWrapper .singleArticleBox .categoryArea {
  margin-bottom: 10px;
}
#journal .singleArticleWrapper .singleArticleBox .categoryArea .category {
  font-size: 1rem;
  margin-right: 5px;
  margin-left: 5px;
  color: #8a7d70;
  text-transform: uppercase;
}
#journal .singleArticleWrapper .singleArticleBox__kvimg {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}
#journal .singleArticleWrapper .singleArticleBox__kvimg img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}
#journal .singleArticleWrapper .singleArticleBox__title {
  display: block;
  padding-bottom: 15px;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  color: #333;
  padding: 2% 3% 2% 3%;
}
@media screen and (max-width: 600px) {
  #journal .singleArticleWrapper .singleArticleBox__title {
    font-size: 2.5rem;
  }
}
#journal .singleArticleWrapper .singleArticleBox__img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #fff;
  transition: all 0.5s ease;
  position: relative;
  display: block;
  padding: 0;
}
#journal .singleArticleWrapper .singleArticleBox__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}
#journal .singleArticleWrapper .singleArticleBox__img:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
#journal .singleArticleWrapper .singleArticleBox__lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #333;
  padding: 2% 3%;
  font-style: italic;
}
@media screen and (max-width: 480px) {
  #journal .singleArticleWrapper .singleArticleBox__lead {
    font-size: 1.2rem;
    line-height: 1.7;
  }
}
#journal .singleArticleWrapper .singleArticleBox .shareButtonArea {
  display: inline-block;
  width: 100%;
  padding: 20px 0 10px 0;
}
#journal .singleArticleWrapper .singleArticleBox .shareButtonArea .share {
  display: inline-block;
  height: 50px;
  width: 70px;
  position: relative;
}
#journal .singleArticleWrapper .singleArticleBox .shareButtonArea .share span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#journal .singleArticleWrapper .singleArticleBox .shareButtonArea a {
  display: inline-block;
  margin: 0 3px;
  opacity: 1;
}
#journal .singleArticleWrapper .singleArticleBox .shareButtonArea a img {
  width: 50px;
  height: 50px;
}
#journal .singleArticleWrapper .singleArticleContent {
  width: 100%;
  display: block;
  padding-bottom: 50px;
  text-align: left;
}
#journal .singleArticleWrapper .singleArticleContent p, #journal .singleArticleWrapper .singleArticleContent .des {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #333;
  padding: 5px 3% 15px 3%;
  margin-bottom: 10px;
}
#journal .singleArticleWrapper .singleArticleContent img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}
#journal .singleArticleWrapper .singleArticleContent .caption {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
  padding: 0 3%;
}
#journal .singleArticleWrapper .singleArticleContent h3 {
  padding: 30px 3% 5px 3%;
  margin-bottom: 15px;
  border-bottom: #333 solid 1px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  #journal .singleArticleWrapper .singleArticleContent h3 {
    font-size: 1.8rem;
  }
}
#journal .singleArticleWrapper .singleArticleContent h4 {
  padding: 20px 3% 0px 3%;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  #journal .singleArticleWrapper .singleArticleContent h4 {
    font-size: 1.4rem;
  }
}
#journal .singleArticleWrapper .singleArticleContent .finished {
  background-color: #fff;
  border-radius: 6px;
  border: #ccc solid 1px;
  font-size: 1.3rem;
  text-align: center;
  font-weight: bold;
  padding: 15px 0;
  margin-bottom: 25px;
  width: 100%;
}
#journal .event251128 {
  padding: 0 3%;
}
#journal .event251128 .kv_dateArea {
  padding: 0 !important;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #journal .event251128 .kv_dateArea {
    text-align: left;
  }
}
#journal .event251128 .kv_dateArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
}
#journal .event251128 .kv_dateArea .text {
  color: #000;
  font-size: 2.7rem;
  line-height: 1.4;
  display: inline-block;
  margin-right: 15px;
}
#journal .event251128 .kv_startArea {
  width: 100%;
  text-align: center;
  padding: 0 !important;
  display: inline-block;
}
@media screen and (max-width: 600px) {
  #journal .event251128 .kv_startArea {
    text-align: left;
  }
}
#journal .event251128 .kv_startArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  top: 2px;
  display: inline-block;
}
#journal .event251128 .kv_startArea .text {
  color: #000;
  font-size: 2rem;
  line-height: 1.4;
  padding-right: 20px;
  display: inline-block;
}
#journal .event251128 .kv_locationArea {
  padding: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #journal .event251128 .kv_locationArea {
    text-align: left;
  }
}
#journal .event251128 .kv_locationArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  top: 3px;
}
#journal .event251128 .kv_locationArea .kv_location_text {
  padding: 0;
  padding-right: 15px;
  display: inline-block;
  /*width:calc(96% - 75px);*/
  text-align: left;
}
#journal .event251128 .kv_locationArea .text {
  padding: 0;
  padding-right: 15px;
  display: inline-block;
  /*width:100%;*/
  font-size: 1.8rem;
  line-height: 1.2;
  color: #000;
}
#journal .event251128 .kv_locationArea .mapLink {
  font-size: 1rem;
  display: inline-block;
  padding: 0;
  font-weight: bold;
  color: #3ca4ff;
}
#journal .event251128 .kv_locationArea .address {
  text-align: left;
  padding: 0;
  font-size: 1rem;
  margin-top: 5px;
  line-height: 1.5;
  padding-right: 15px;
  color: #000;
}
#journal .event251128 .kv_stationArea {
  width: 100%;
  text-align: center;
}
#journal .event251128 .kv_stationArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
  top: 3px;
}
#journal .event251128 .kv_stationArea .kv_station_text {
  display: inline-block;
  text-align: center;
}
#journal .event251128 .kv_stationArea .text {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #000;
}
#journal .event251128 .castAreaWrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
}
#journal .event251128 .castArea {
  width: 50%;
  padding: 0;
  display: flex;
  padding-bottom: 20px;
}
@media screen and (max-width: 600px) {
  #journal .event251128 .castArea {
    width: 100%;
  }
}
#journal .event251128 .castArea .left {
  width: 30%;
}
#journal .event251128 .castArea .left img {
  width: 100%;
  display: block;
}
#journal .event251128 .castArea .right {
  width: 65%;
  margin-left: 5%;
}
#journal .event251128 .castArea .right .castName {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  padding: 0;
}
#journal .event251128 .castArea .right .castNameEng {
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #666;
  padding: 0;
}
#journal .event251128 .castArea .right .castDes {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  padding: 0;
  padding-right: 20px;
}
@media screen and (max-width: 600px) {
  #journal .event251128 .castArea .right .castDes {
    padding-right: 5%;
  }
}
@media screen and (max-width: 960px) {
  #journal .event251128 .castArea {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  #journal .event251128 .castArea .left {
    width: 30%;
    margin: 0;
  }
  #journal .event251128 .castArea .right {
    width: 65%;
  }
}

.movie {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  height: 540px;
}
@media screen and (max-width: 600px) {
  .movie {
    min-height: 180px;
    height: auto;
  }
}

.movie-inner {
  display: block;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.thumb {
  width: 100%;
  max-width: 100%;
}

.movie-player {
  position: relative;
  z-index: 10;
}

.noArticlesMessage {
  padding: 30px 0;
  font-size: 1.2rem;
}

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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  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: 1;
}
.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: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.eventContents {
  width: 100%;
  background: url("/img/common/bggray.svg") no-repeat left top;
  background-size: 100% auto;
  background-position: 0% 20vw;
  transform: scale(-1, 1);
  z-index: 0;
  overflow-x: hidden;
}
.eventContents .container {
  width: 100%;
  /*max-width: 1500px;*/
  transform: scale(-1, 1);
  margin: 0 auto;
  padding: 20px 3% 20px 3%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.eventContents .kv {
  width: 100%;
  height: 71vw;
  max-height: 1000px;
  overflow: visible;
  position: relative;
}
.eventContents .kv .kvimage {
  display: block;
  width: 73%;
  position: relative;
  position: absolute;
  top: 30px;
  left: 28%;
  transition: all 0.8s ease-out;
}
@media screen and (max-width: 960px) {
  .eventContents .kv .kvimage {
    width: 100%;
  }
}
.eventContents .kv .kvDateArea {
  position: absolute;
  width: 60%;
  top: 55%;
  left: 2%;
  text-align: left;
}
@media screen and (max-width: 960px) {
  .eventContents .kv .kvDateArea {
    display: none;
  }
}
.eventContents .kv .kvDateArea .date {
  display: block;
  font-size: 2.7rem;
  margin-bottom: -10px;
  color: #000;
}
.eventContents .kv .kvDateArea .place {
  display: block;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}
.eventContents .kv .kvDateArea .cast {
  display: block;
  font-size: 2rem;
  margin-bottom: -10px;
  color: #000;
}
.eventContents .kv .kvtextArea {
  position: absolute;
  width: 100%;
}
.eventContents .kv .kvtextArea .kvTextPc {
  display: block;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .eventContents .kv .kvtextArea .kvTextPc {
    display: none;
  }
}
.eventContents .kv .kvtextArea .kvTextSp {
  display: none;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .eventContents .kv .kvtextArea .kvTextSp {
    display: block;
  }
}
.eventContents .left {
  width: 55%;
  padding-bottom: 30px;
  z-index: 3000;
}
.eventContents .right {
  width: 45%;
}
@media screen and (max-width: 980px) {
  .eventContents .left,
.eventContents .right {
    width: 100%;
  }
}
.eventContents .kv_cast {
  width: 35%;
  margin: 0 0 10px 0;
}
.eventContents .kv_title {
  margin-bottom: 30px;
}
.eventContents .kv_title img {
  width: 90%;
}
.eventContents .kv_dateArea {
  padding: 0;
}
.eventContents .kv_dateArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  display: inline-block;
}
.eventContents .kv_dateArea .text {
  color: #000;
  font-size: 2.7rem;
  margin-bottom: 20px;
  line-height: 1.4;
  display: inline-block;
}
.eventContents .kv_startArea {
  padding-top: 5px;
}
.eventContents .kv_startArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  top: 2px;
}
.eventContents .kv_startArea .text {
  color: #000;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
  padding-right: 10px;
}
.eventContents .kv_locationArea {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
}
.eventContents .kv_locationArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  display: block;
  top: 3px;
}
.eventContents .kv_locationArea .kv_location_text {
  display: inline-block;
  width: calc(96% - 75px);
  text-align: left;
}
.eventContents .kv_locationArea .text {
  display: inline-block;
  width: 100%;
  color: #000;
  font-size: 1.8rem;
  line-height: 1.2;
}
.eventContents .kv_locationArea .mapLink {
  font-size: 1.1rem;
  margin-top: 5px;
  display: inline-block;
  font-weight: bold;
  color: #3ca4ff;
}
.eventContents .kv_locationArea .address {
  text-align: left;
  font-size: 1.2rem;
  margin-top: 5px;
  line-height: 1.5;
  color: #000;
}
.eventContents .kv_stationArea {
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
}
.eventContents .kv_stationArea img {
  width: 60px;
  margin-right: 15px;
  position: relative;
  top: 3px;
}
.eventContents .kv_stationArea .kv_station_text {
  display: block;
  width: calc(96% - 75px);
  text-align: left;
}
.eventContents .kv_stationArea .text {
  display: inline-block;
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #000;
}

.event_des {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 700;
  color: #333;
}

.castArea {
  display: flex;
  margin-bottom: 0px;
}
.castArea .left {
  width: 30%;
}
.castArea .left img {
  width: 100%;
  display: block;
}
.castArea .right {
  width: 65%;
  margin-left: 5%;
}
.castArea .right .castName {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
}
.castArea .right .castNameEng {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #666;
}
.castArea .right .castDes {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  padding-right: 3%;
  padding-bottom: 15px;
}
@media screen and (max-width: 960px) {
  .castArea {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .castArea .left {
    width: 30%;
    margin: 0;
  }
  .castArea .right {
    width: 65%;
  }
}

.aboutNVC {
  width: 90%;
  margin: 30px auto 50px auto;
  background-color: #fff;
  border: #000 solid 1px;
  padding: 5% 5% 3% 5%;
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.5);
}
.aboutNVC .aboutNVC_title {
  width: 100%;
  text-align: center;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  color: #000;
  padding-left: 3%;
}
.aboutNVC .aboutNVC_title img {
  width: 30%;
  max-width: 280px;
  padding: 20px 0;
}
.aboutNVC .left {
  width: 50%;
  padding: 3%;
  font-size: 1rem;
  color: #000;
}
.aboutNVC .right {
  width: 50%;
  padding: 3%;
  font-size: 1rem;
  color: #000;
}
@media screen and (max-width: 960px) {
  .aboutNVC {
    width: 90%;
    padding: 8% 6% 5% 6%;
  }
  .aboutNVC .left,
.aboutNVC .right, .aboutNVC .aboutNVC_title {
    width: 100%;
    padding: 0 0 15px 0;
  }
}

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