@charset "utf-8";

/* DEFINE
--------------------------------------*/
:root {
  --maincolor: #000;
}


/* RESET
--------------------------------------*/
html {
  color: #000;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

fieldset,
img {
  border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal
}

ol,
ul {
  list-style: none
}

caption,
th {
  text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal
}

q:before,
q:after {
  content: ''
}

abbr,
acronym {
  border: 0;
  font-variant: normal
}

sup {
  vertical-align: text-top
}

sub {
  vertical-align: text-bottom
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  *font-size: 100%
}

legend {
  color: #000
}

#yui3-css-stamp.cssreset {
  display: none
}


/* COMMON
--------------------------------------*/
html {
  scroll-behavior: smooth;
  position: relative;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: .1em;
  position: relative;
  background: #eff7e8;
}

body.active {
  overflow-y: hidden;
}

img {
  max-width: 100%;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  word-break: break-all;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: -internal-center;
}

td {
  display: table-cell;
  vertical-align: inherit;
}

.inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.onlySp {
  display: none !important;
}

.fade_up {
  transform: translateY(30px);
  transition: all ease .4s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  -webkit-transition: all ease .4s;
  perspective: 1000;
}

.fade_up.scrolled {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.fade_left {
  transform: translateX(30px);
  transition: all ease .4s;
  -webkit-transform: translateX(30px);
  -webkit-transition: all ease .4s;
  opacity: 0;
}

.fade_left.scrolled {
  opacity: 1;
  transform: translateX(0px);
  -webkit-transform: translateX(0px);
}


/* navigation */
.pcNav {
  height: 100%;
  align-items: center;
}

.pcNav li {
  border-bottom: 1px solid #000;
  padding: 10px;
}

.pcNav li a {
  color: #000;
  display: block;
  padding: 4px 8px;
  box-sizing: border-box;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  position: relative;
  font-size: 1.5rem;
  line-height: 160%;
  letter-spacing: .1em;
}

.pcNav li a:hover {
  opacity: .7;
}

.spNav {
  position: fixed;
  z-index: 1000;
  right: 4px;
  top: 4px;
  padding: 10px;
  box-sizing: border-box;
  background: #003357;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  cursor: pointer;
}

.spNav .toggle {
  display: block;
  position: relative;
  width: 1.75rem;
  height: 22px;
}

.spNav .toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  box-shadow: 1px 1px 1px #004868;
}

.show .spNav .toggle i {
  background-color: #fff;
  box-shadow: none;
}

.spNav .toggle i:nth-child(1) {
  top: 0;
}

.spNav .toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.spNav .toggle i:nth-child(3) {
  bottom: 0;
}

.show .toggle i:nth-child(1) {
  transform: translateY(10px) rotate(-45deg);
  -webkit-transform: translateY(10px) rotate(-45deg);
}

.show .toggle i:nth-child(2) {
  opacity: 0;
}

.show .toggle i:nth-child(3) {
  transform: translateY(-10px) rotate(45deg);
  -webkit-transform: translateY(-10px) rotate(45deg);
}

.spMenu {
  position: fixed;
  z-index: -100;
  display: block;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  opacity: 0;
  visibility: hidden;
}

.show .spMenu {
  opacity: 1;
  visibility: visible;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
}

.spMenu ul {
  display: none;
}

.show .spMenu ul {
  display: block;
  padding: 40px;
  box-sizing: border-box;
}

.spMenu a {
  display: block;
  color: #000;
  font-size: 1.3rem;
  font-weight: bold;
  padding: .6% 0;
  letter-spacing: .07em;
  display: block;
}

.show .spMenu ul#snsNavSp {
  align-items: flex-start;
  display: flex;
  justify-content: flex-start;
}

.marker {
  position: relative;
  background: linear-gradient(transparent 60%, yellow 60%);
}


/* ANIMATION
--------------------------------------*/

.slide {
  display: inline-block;
  animation: sliding 2.5s ease-in-out infinite;
}

@keyframes sliding {
  0% {
    transform: translate(3px, 0px);
  }

  5% {
    transform: translate(-3px, 0px);
  }

  10% {
    transform: translate(3px, 0px);
  }

  15% {
    transform: translate(-3px, 0px);
  }

  20% {
    transform: translate(3px, 0px);
  }

  25% {
    transform: translate(-3px, 0px);
  }

  30% {
    transform: translate(0px, 0px);
  }
}


/* PARTS
--------------------------------------*/

/* ----------------------------
  PARTS__LIST
----------------------------  */
.parts__list {
  margin-bottom: 20px;
}

.parts__list li {
  list-style: none;
  list-style-position: outside;
  margin-left: 20px;
  line-height: 160%;
  letter-spacing: .02em;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #3e3e3e;
}

.parts__list li a {
  color: #971953;
  text-decoration: underline;
  transition: all ease .4s;
  display: inline-block;
}

.parts__list li a:hover {
  opacity: .7;
}

.parts__list li::before {
  position: relative;
  top: -2px;
  left: -12px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 100%;
  background: #000;
}

.parts__list.note__ans li {
  margin-left: 0;
}

.parts__list.note__ans li b {
  font-size: 1.3rem;
  padding-right: 6px;
}

.parts__list.note__ans li::before {
  position: relative;
  top: 0px;
  left: -18px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  font-size: 1rem;
  border-radius: 100%;
  background: none;
  letter-spacing: .1em;
}

.parts__list.ans li {
  margin-left: 26px;
}

.parts__list.ans li::before {
  position: relative;
  top: -2px;
  left: -22px;
  display: inline-block;
  content: 'A.';
  background: none;
  width: 0px;
}

.parts__list .acBtn {
  font-size: 1.2rem;
  text-decoration: underline;
  text-align: center;
  display: inline-block;
  padding: 40px 0;
  padding-left: 40px;
  cursor: pointer;
  background: url(../img/play7.png) no-repeat;
  background-size: contain;
  background-position: left center;
  width: 100%;
  box-sizing: border-box;
}

.acBtn .sankaku {
  transition: all ease .4s;
}

.acBtn.open .sankaku {
  transform: rotate(180deg);
  display: inline-block;
}

.parts__list .acArea {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.parts__list .acArea.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding-top: 20px;
}

.parts__list .parts__list {
  margin-bottom: 0;
}


/* ----------------------------
  PARTS__POP
----------------------------  */
.parts__popBtn:hover {
  cursor: pointer;
}

.parts__pop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  opacity: 0;
  visibility: hidden;
  transition: .3s linear;
  -webkit-transition: .3s linear;
  transform: scale(.2);
  -webkit-transform: scale(.2);
  color: #fff;
  padding: 7%;
  box-sizing: border-box;
  overflow: scroll;
}

.parts__pop.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  -webkit-transform: scale(1);
  z-index: 1000;
}

.parts__pop.active .video {
  position: relative;
  width: 60%;
  margin: 0 auto 20px;
  height: 0;
  padding-bottom: 36.25%;
}

.parts__popClose {
  width: 60px;
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.parts__popClose:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.parts__popBox {
  max-width: 800px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
}

.parts__popDesc {
  height: 100%;
}

.parts__popP {
  color: #fff;
  font-size: 1rem;
}

.parts__popP a {
  display: block;
  color: #fff;
  background: #439ec3;
  padding: 10px 40px;
  max-width: 40%;
  transition: all ease .4s;
  margin: 0 auto 20px;
  text-align: center;
}

.parts__popP a:hover {
  opacity: .8;
}


/* ----------------------------
  PARTS__TOPSCROLL
----------------------------  */
.parts__topscroll.show {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
}

.parts__topscroll {
  opacity: 0;
  transform: translateY(20px);
  -webkit-transform: translateY(20px);
  position: fixed;
  z-index: 100;
  right: 6px;
  bottom: 20px;
  padding: 2px;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}

.parts__topscroll a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: url(../img/arrow/arrow01w.png) no-repeat, #000;
  background-size: 20px;
  background-position: center;
  box-sizing: border-box;
  transform: rotate(-90deg);
  transition: all ease .4s;
  -webkit-transform: rotate(-90deg);
  -webkit-transition: all ease .4s;
  border: 2px solid #fff;
}

.parts__topscroll a:hover {
  background: url(../img/arrow/arrow01w.png) no-repeat, var(--maincolor);
  background-size: 20px;
  background-position: center;
  box-shadow: 1px 1px 20px #fff;
  opacity: .7;
}


/* HEADER
--------------------------------------*/

header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 2px 0;
  min-height: 46px;
  z-index: 1000;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
}


/* MV
--------------------------------------*/
.mv {
  position: relative;
}

.mv__main {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.mv__ul {
  display: flex;
}

.mv__li {
  display: block;
  width: 100%;
  margin-bottom: 14px;
}

.mv__li img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.mv__sns {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
}

.mv__sns.trigger {
  opacity: 1;
  visibility: visible;
  height: auto;
  position: fixed;
  bottom: 28vh;
  right: 6px;
  z-index: 10;
  max-width: 40px;
}

.mv__sns ul {
  display: flex;
}

.mv__sns li {
  display: block;
  width: 100%;
  margin-bottom: 4px;
}

.mv__sns li img {
  width: 100%;
  transition: all ease 0.4s;
  -webkit-transition: all ease 0.4s;
  box-sizing: border-box;
}

.mv__ticket {
  position: fixed;
  bottom: 12vh;
  right: -10px;
  z-index: 10;
}

.mv__ticket a {
  display: block;
}

.mv__ticketBtn {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
}

.mv__ticketBtn.trigger {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: 90px;
}

.mv__ticketBtn:hover {
  transform: scale(1.04);
}


/* NOTE
--------------------------------------*/
.note__box {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0;
}

.note__single {
  width: 100%;
  margin: 0 auto 24px;
}

.note__ttl {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: .02em;
  color: var(--maincolor);
  background: #ffe776;
  padding: 12px;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  overflow: hidden;
  padding-right: 2%;
  position: relative;
  margin-bottom: 0;
  border: 2px solid #003e5b;
  border-radius: 40px;
  box-shadow: 1px 1px 1px #003e5b;
}

.note__ttl.open {
  margin-bottom: 20px;
}

.note .acArea {
  width: 100%;
  margin: 0 auto;
  font-size: .9rem;
  letter-spacing: .03em;
  line-height: 1.6;
  padding: 0 10px;
  word-break: break-all;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all ease .4s;
  -webkit-transition: all ease .4s;
  overflow: hidden;
  padding: 0 30px;
  box-sizing: border-box;
  background: #fff;
}

.note .acArea.open {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: hidden;
  padding: 30px;
}

.note__sub {
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0;
  border-bottom: 2px solid var(--maincolor);
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.note__cat {
  line-height: 160%;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #3e3e3e;
  letter-spacing: .04em;
}

.note__ans {
  font-weight: bold;
}

.note__contents {
  margin-bottom: 40px;
}

.note__cat1 {
  font-size: 1.4rem;
  font-weight: bold;
  background: #fce7e7;
  padding: 4px 12px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.note__ttl:hover {
  opacity: .8;
}


/* FOOTER
--------------------------------------*/
footer {
  padding: 60px 0 80px;
}

.footer__bnr {
  width: 45%;
  max-width: 380px;
  margin: 0 auto 80px;
}

.footer__bnr li {
  width: 100%;
}

.footer__bnr img {
  width: 100%;
  margin: 0 auto;
  display: block;
  transition: all ease .4s;
  max-height: 116px;
  object-fit: contain;
}

.footer__bnr img:hover {
  opacity: .7;
}

.f__sns {
  width: 28%;
  max-width: 214px;
  margin: 0 auto 40px;
}

.f__sns li {
  width: 24%;
}

.bg1 {
  display: block;
  width: 100%;
  margin-bottom: 100px;
}

.bg1 img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.footer__bnr4 {
  width: 87%;
  max-width: 900px;
  margin: 0 auto 80px;
}

.footer__bnr4 li {
  width: 48%;
}

.footer__bnr4 img {
  transition: all ease .4s;
}

.footer__bnr4 img:hover {
  opacity: .7;
}

.footer__box {
  width: 80%;
  margin: 0 auto;
}

.footer__contact {
  background: url(../img/border.png) no-repeat, url(../img/border.png) no-repeat, #000;
  color: #fff;
  background-position: left top, left bottom;
  background-size: contain, contain;
  padding: 50px 20px 60px 20px;
  text-align: center;
  margin-bottom: 100px;
  font-size: .9rem;
}

.footer__contact a {
  color: #fff;
  text-decoration: underline;
}

.footer__bnr2 {
  width: 100%;
  margin: 0 auto 80px;
}

.footer__bnr2__li {
  width: 49%;
}

.footer__bnr2__li img {
  transition: all ease .4s;
}

.footer__bnr2__li img:hover {
  opacity: .7;
}

.footer__bnr3 {
  width: 80%;
  margin: 0 auto;
}

.footer__bnr3__box {
  width: 70%;
  padding: 0 8%;
  box-sizing: border-box;
  margin: 0 auto 40px;
}

.footer__bnr3__box li {
  width: 70%;
  margin: 0 auto;
}

.footer__bnr3__box li img {
  transition: all ease .4s;
}

.footer__bnr3__box li img:hover {
  opacity: .7;
}

.footer__desc {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: .06em;
}


.slick-prev:before {
  content: '' !important;
  background: url(../img/arrow/arrow00L.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 130px;
  display: block;
}

.slick-next:before {
  content: '' !important;
  background: url(../img/arrow/arrow00R.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 130px;
  display: block;
}

.slick-prev,
.slick-next {
  z-index: 2 !important;
}

.acArea .apiArea {
  height: 0;
}

.acArea.open .apiArea {
  height: auto;
}

.apiArea iframe {
  width: 100%;
  min-height: 560px;
  border: none !important;
}

.slick-prev,
.slick-next {
  top: 40% !important;
}


/* catch
--------------------------------------*/

#catch {
  padding: 20px 0 60px;
}

.catch1 {
  width: 64%;
  margin: 0 auto 10px;
}

.catch2 {
  width: 100%;
  margin: 0 auto;
}

.catch__ul {
  width: 55%;
  max-width: 400px;
  margin: 0px auto 100px;
}


/* intro
--------------------------------------*/

#intro {
  padding: 30px 0 20px;
  overflow: hidden;
  margin-top: -100px;
  background: url(../img/bg3.png) no-repeat, url(../img/bg4.png) no-repeat;
  background-position: 10% 90%, 94% 94%;
  background-size: 150px auto, 150px auto;
}

.intro1 {
  width: 50%;
  margin: 0 auto 20px;
}

.intro__txt {
  font-size: 1.3rem;
  text-align: center;
  line-height: 180%;
  letter-spacing: .04em;
  margin-bottom: 120px;
}

.intro__bnr {
  margin-bottom: 30px !important;
}

.mb30 {
  margin: 0 auto 20px;
}

.intro__bnr li {
  width: 48%;
  display: block;
  margin: 0 auto;
}

.intro__bnr li img {
  transition: all ease .4s;
}

.intro__bnr li img:hover {
  opacity: .8;
}


/* about
--------------------------------------*/

#about {
  padding: 0px 0 60px;
}

.about1 {
  width: 50%;
  margin: 0 auto 30px;
}

.about2 {
  width: 80%;
  margin: 120px auto 30px;
}

.campain1 {
  width: 40%;
  margin: 120px auto 40px;
}


/* howto
--------------------------------------*/

#howto {
  padding: 0px 0 60px;
  overflow: hidden;
}

.howto1 {
  width: 26%;
  margin: 0 auto 40px;
}

.howto__ul {
  margin: 0 auto 40px;
}

.howto__ul li a {
  transition: all ease .4s;
}

.howto__ul li a:hover {
  opacity: .7;
}

.slick-list {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 15px;
}

.slider {
  overflow: hidden;
}

.slider__loop .slick-list {
  margin: 0 -5px;
}

.slider__loop .slick-slide {
  margin: 0 5px;
}


/* play
--------------------------------------*/

#play {
  padding: 0px 0 60px;
}

.play1 {
  width: 26%;
  margin: 0 auto 60px;
}

.play__ul {
  width: 86%;
  max-width: 1080px;
  margin: 0 auto 60px;
}

.play__ul li {
  width: 17%;
  transition: all ease .4s;
}

.play__ul li:nth-child(2) {
  transition-delay: .3s;
}

.play__ul li:nth-child(3) {
  transition-delay: .6s;
}

.play__ul li:nth-child(4) {
  transition-delay: .9s;
}

.play__ul li:nth-child(5) {
  transition-delay: 1.2s;
}

.play__info {
  width: 60%;
  border: 2px solid #ff8c5c;
  border-radius: 20px;
  margin: 0 auto 60px;
  background: #fff;
  padding: 40px 80px;
  box-sizing: border-box;
}

.play__info ul {
  width: 100%;
  font-size: .85rem;
  line-height: 150%;
  margin-bottom: 0;
}

.play__info .acBtn img {
  display: inline-block;
  max-width: 100px;
}


/* event
--------------------------------------*/

.event__info {
  width: 70%;
  margin: 0 auto;
  margin-top: -2px;
}

.event__info {
  border: 2px solid #003e5b;
}

.event__ttl {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  background: #ff8c5c;
  text-align: center;
  border-bottom: 2px solid #003e5b;
  padding: 12px 0;
  box-sizing: border-box;
}

.event__ttl.ver2 {
  background: #80db96;
}

.event__ttl.ver3 {
  background: #398cc8;
}

.event__box {
  text-align: center;
  padding: 60px 80px;
  box-sizing: border-box;
  background: url(../img/bg2.png) repeat-y;
  background-size: 100% auto;
}

.event__bold__small {
  display: block;
  text-align: left;
  width: 90%;
  margin: 10px auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%;
  margin-top: 20px;
}

.event__sub {
  color: #fff;
  background: #003e5b;
  text-align: center;
  padding: 4px 0;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.event__date {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.event__date small {
  font-size: .9rem;
}

.event__date span {
  font-size: 2rem;
}

.event__bold {
  font-weight: bold;
  margin-bottom: 6px;
}

.event__bnr {
  margin: 40px 0;
}

.event__bnr small {
  font-size: 1rem;
  display: block;
  text-align: center;
}

.bnr02 {
  width: 100%;
}

.bnr02 img {
  transition: all ease .4s;
}

.bnr02 img:hover {
  opacity: .8;
}

.event__price {
  margin-top: 20px;
}

.event__price__ul {
  width: 86%;
  margin: 0 auto 30px;
  border: 3px solid #ff8c5c;
  border-radius: 4px;
  background: #fff;
  text-align: center;
}

.event__price__ul li {
  padding: 30px 0;
  border-bottom: 1px solid #ff8c5c;
}

.event__price__ul li:last-child {
  border-bottom: none;
}

.event__price__cost {
  font-size: 1.8rem;
  font-weight: 500;
}

.event__price__cost span {
  font-size: .9rem;
  font-weight: 500;
}

.event__price__u22 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.event__price__u22 span {
  margin-left: 10px;
  font-size: .7rem;
}

.u22 {
  width: 44%;
  margin: 0 auto 20px;
}

.event__u22__p {
  font-size: .75rem;
  line-height: 160%;
  letter-spacing: .02em;
}

.event__u22__p a {
  color: #f75a24;
  text-decoration: underline;
  transition: all ease .4s;
}

.event__box__btn {
  width: 50%;
  margin: 0 auto 50px;
}

.event__box__btn a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  background: #faa346;
  border-radius: 40px;
  border: 1px solid #003e5b;
  padding: 16px 0;
  box-shadow: 2px 2px 1px #003e5b;
  transition: all ease .4s;
}

.event__box__btn a:hover {
  opacity: .8;
}

.event__info__desc {
  display: block;
  text-align: left;
  width: 90%;
  margin: 10px auto;
  font-size: 1rem;
  font-weight: 600;
  line-height: 150%;
  margin-top: 20px;
}

.slick-next:before {
  background: url(../img/cmn/arrowR.png) no-repeat !important;
  background-size: contain !important;
  width: 13px !important;
}

.slick-prev:before {
  background: url(../img/cmn/arrowL.png) no-repeat !important;
  background-size: contain !important;
  width: 13px !important;
}

.slick-prev,
.slick-next {
  top: 50% !important;
}

.slick-prev {
  left: -15px !important;
}

.slick-next {
  right: -20px !important;
}

.contact1 {
  width: 36%;
  margin: 0 auto 60px;
}

.pop_img {
  width: 70%;
  max-width: 570px;
  margin: 0 auto 30px;
  border: 2px solid #fff;
  overflow: hidden;
}

.pop_img img {
  display: block;
  transform: scale(1.02);
}

.info__ttl {
  width: 30%;
  margin: 0 auto 60px;
}

.event__txt {
  letter-spacing: .05em;
  font-size: 1.3rem;
  font-weight: 600;
}

.event__info__desc small {
  margin-top: 10px;
  display: block;
}

.team {
  font-size: .9rem;
  text-align: center;
  padding: 6px 0;
  letter-spacing: .03em;
}