@charset "UTF-8";
/* variables
----------------------------------------*/
.load-main-wrap {
  display: none;
  overflow: hidden;
}
.load-main-wrap.is-show {
  display: block;
  overflow: inherit;
}

.inner {
  width: 1220px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .inner {
    width: 100%;
  }
}

.anime-logo {
  opacity: 0;
  transition: all 1s;
  transform: translateX(20px);
}
@media screen and (max-width: 750px) {
  .anime-logo {
    transform: translateX(0);
  }
}

.anime-logo.is-show {
  opacity: 1;
  transform: translateX(0);
}

.anime-down {
  opacity: 0;
  transition: all 1s;
  transform: translateY(-20px);
}
@media screen and (max-width: 750px) {
  .anime-down {
    transition: all 1s;
  }
}

.anime-down.is-show {
  opacity: 1;
  transform: translateY(0);
}

.anime-up,
.anime-up-list li {
  opacity: 0;
  transition: all 0.5s;
  transform: translateY(20px);
}

.anime-up.is-show,
.anime-up-list li.is-show {
  opacity: 1;
  transform: translateY(0);
}

.anime-left,
.anime-left-list li {
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(-20px);
}

.anime-left.is-show,
.anime-left-list li.is-show {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 750px) {
  .course-list.anime-left-list li {
    transform: translateX(0);
    transform: translateY(-20px);
  }
  .course-list.anime-left-list li.is-show {
    transform: translateX(0);
    transform: translateY(0);
  }
}
/*#heroBox
----------------------------------------*/
#heroBox {
  padding-top: 81px;
  height: 591px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  #heroBox {
    padding-top: 50px;
    height: auto;
  }
}
#heroBox .inner {
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 750px) {
  #heroBox .inner {
    display: block;
    position: relative;
  }
}
#heroBox .left-item {
  width: 312px;
  padding-top: 50px;
}
@media screen and (max-width: 750px) {
  #heroBox .left-item {
    padding-top: 0;
    position: absolute;
    top: 0;
    left: 35px;
    z-index: 200;
    width: 32px;
  }
  #heroBox .left-item img {
    width: 100%;
  }
}

.hero-slider-box {
  width: 907px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .hero-slider-box {
    width: 100%;
    /*position: absolute;
    top: 0;
    left: 0;*/
    padding-top: 56.2%;
  }
  .hero-slider-box img {
    width: 100%;
    height: auto;
  }
}
.hero-slider-box h2 {
  position: absolute;
  top: 146px;
  right: 20px;
  z-index: 200;
}
@media screen and (max-width: 750px) {
  .hero-slider-box h2 {
    width: 60%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
  }
}
.hero-slider-box ul {
  display: none;
  height: 510px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero-slider-box ul {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    /*img {
    	height: 200px;
    }*/
  }
}
.hero-slider-box li {
  position: relative;
}
.hero-slider-box li p {
  position: absolute;
  bottom: 15px;
  right: 26px;
  color: #FFF;
  text-shadow: 0px 0px 10px rgba(21, 21, 38, 0.79);
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .hero-slider-box li p {
    bottom: 12px;
    right: 12px;
    font-size: 14px;
  }
}

/*#sec-about
----------------------------------------*/
#sec-about .inner {
  padding: 120px 100px 100px;
}
@media screen and (max-width: 750px) {
  #sec-about .inner {
    padding: 60px 25px 0;
  }
  #sec-about .inner .item {
    width: 65%;
    margin: 0 auto 50px;
  }
  #sec-about .inner .item img {
    width: 100%;
    height: auto;
  }
}
#sec-about ul {
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #sec-about ul {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  #sec-about ul li {
    text-align: center;
  }
  #sec-about ul li:first-child img {
    width: 257px;
    height: auto;
  }
}
#sec-about ul li:last-child {
  padding-top: 52px;
}
@media screen and (max-width: 750px) {
  #sec-about ul li:last-child {
    padding-top: 30px;
  }
  #sec-about ul li:last-child img {
    width: 60%;
    height: auto;
  }
}

/*#sec-spot
----------------------------------------*/
#sec-spot {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 750px) {
  #sec-spot {
    padding-top: 15px;
    padding-bottom: 50px;
  }
}
#sec-spot .inner {
  padding-left: 100px;
}
@media screen and (max-width: 750px) {
  #sec-spot .inner {
    padding: 0 25px;
  }
}
#sec-spot h2 {
  margin-bottom: 61px;
}
@media screen and (max-width: 750px) {
  #sec-spot h2 {
    margin-bottom: 28px;
  }
  #sec-spot h2 img {
    width: 265px;
    height: auto;
  }
}
#sec-spot .item-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  #sec-spot .item-box {
    display: block;
  }
}
#sec-spot .map-box {
  width: 399px;
  text-align: center;
}
#sec-spot .map-box .map {
  padding-top: 104px;
  margin-bottom: 41px;
}
@media screen and (max-width: 750px) {
  #sec-spot .map-box {
    width: 100%;
  }
  #sec-spot .map-box .map {
    padding-top: 0;
    margin-bottom: 30px;
  }
  #sec-spot .map-box .map img {
    width: 80%;
    margin: auto;
  }
  #sec-spot .map-box .pic {
    display: none;
  }
}
#sec-spot .right-box {
  width: 683px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  #sec-spot .right-box {
    width: 100%;
  }
}
#sec-spot .right-box ul {
  width: 326px;
}
@media screen and (max-width: 750px) {
  #sec-spot .right-box ul {
    width: 100%;
  }
}
#sec-spot .right-box li {
  width: 326px;
  border-bottom: 2px dotted #000;
  padding: 18px 0;
}
@media screen and (max-width: 750px) {
  #sec-spot .right-box li {
    width: 100%;
    padding: 10px;
  }
  #sec-spot .right-box li.border-none {
    border-bottom: none;
  }
}
#sec-spot .right-box li:first-child {
  border-top: 2px dotted #000;
}
#sec-spot .right-box a {
  font-size: 15px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
}
#sec-spot .right-box i {
  margin-right: 18px;
}
#sec-spot .right-box i img {
  width: 38px;
  height: 46px;
}
@media screen and (max-width: 750px) {
  #sec-spot .right-box i {
    margin-right: 12px;
  }
  #sec-spot .right-box i img {
    width: 19px;
    height: 23px;
  }
}
#sec-spot .right-box figure {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#sec-spot .right-box figure img {
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 750px) {
  #sec-spot .right-box figure img {
    width: 38px;
    height: 38px;
  }
}
#sec-spot .right-box figcaption {
  font-weight: bold;
}
#sec-spot .right-box figcaption span {
  font-size: 13px;
  color: #777;
}
#sec-spot .sp-pic {
  display: none;
}
@media screen and (max-width: 750px) {
  #sec-spot .sp-pic {
    display: block;
    text-align: center;
  }
  #sec-spot .sp-pic img {
    width: 55%;
    margin-top: 17px;
  }
}
#sec-spot .sec-spot-free {
  position: relative;
  border: 4px solid #000;
  width: 790px;
  height: 250px;
  margin: 70px auto 0;
  padding: 30px;
}
@media screen and (max-width: 750px) {
  #sec-spot .sec-spot-free {
    width: 100%;
    height: auto;
    margin: 20px 0 0;
    border: 2px solid #000;
    padding: 20px;
  }
}
#sec-spot .sec-spot-free .txt {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  #sec-spot .sec-spot-free .txt img {
    width: 271px;
  }
}
#sec-spot .sec-spot-free .btn {
  display: flex;
  justify-content: center;
  -moz-column-gap: 22px;
       column-gap: 22px;
  padding-top: 25px;
}
@media screen and (max-width: 750px) {
  #sec-spot .sec-spot-free .btn {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    padding-top: 15px;
  }
  #sec-spot .sec-spot-free .btn img {
    width: 240px;
    height: auto;
  }
}

/*#sec-course
----------------------------------------*/
#sec-course {
  background: url(../img/course/bg-course.png) 0 0 repeat;
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  #sec-course {
    background-size: 27px;
    padding: 46px 0 50px;
  }
}
#sec-course .inner {
  padding-left: 100px;
}
@media screen and (max-width: 750px) {
  #sec-course .inner {
    padding: 0 25px;
  }
}
#sec-course h2 {
  margin-bottom: 121px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #sec-course h2 {
    margin-bottom: 30px;
  }
  #sec-course h2 img {
    width: 226px;
    height: auto;
  }
}
#sec-course h2:after {
  content: "";
  display: block;
  width: 149px;
  height: 115px;
  position: absolute;
  top: -24px;
  right: 26px;
  z-index: 2;
  background: url(../img/illust06.png) 0 0 no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec-course h2:after {
    width: 75px;
    height: 56px;
    top: 0;
    right: -10px;
  }
}
#sec-course .course-box {
  width: 1070px;
  margin: 0 auto 97px;
  position: relative;
  background-color: #FFF;
  text-align: center;
  padding: 0 55px 73px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-box {
    padding: 0;
    width: 100%;
    background: none;
    margin-bottom: 45px;
  }
}
#sec-course .course-box.bg-day {
  margin-bottom: 100px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-box.bg-day {
    margin-bottom: 31px;
  }
}
#sec-course .course-box h3 {
  background-color: #000;
  padding: 20px 80px;
  text-align: center;
  display: inline-block;
  margin: -20px auto 60px;
  font-size: 0;
}
@media screen and (max-width: 750px) {
  #sec-course .course-box h3 {
    width: calc(100% + 20px);
    text-align: center;
    background-color: #000;
    padding: 10px 0;
    font-size: 0;
    display: block;
    margin: 0;
    margin-left: -10px;
  }
  #sec-course .course-box h3 img {
    width: 262px;
    height: auto;
  }
}
#sec-course .course-list {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list {
    display: block;
  }
  #sec-course .course-list .detail {
    padding-top: 10px;
  }
}
#sec-course .course-list.day-list li:nth-child(n+5) {
  margin-top: 45px;
}
#sec-course .course-list.last {
  margin-top: 50px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list.last {
    margin-top: 35px;
  }
}
#sec-course .course-list.bg {
  background: url(../img/illust03.png) 85% 85% no-repeat #FFF;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list.bg {
    background: none;
  }
}
#sec-course .course-list li {
  width: 200px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li {
    width: 100%;
    padding: 0 60px;
  }
}
#sec-course .course-list li:not(:nth-child(4n)) {
  margin-right: 52px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
#sec-course .course-list li:nth-child(n+5) {
  margin-top: 90px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:nth-child(n+5) {
    margin-top: 0;
  }
}
#sec-course .course-list li:nth-child(4n):after, #sec-course .course-list li:last-child:after {
  display: none;
}
#sec-course .course-list li:nth-child(4n) .step:after {
  width: calc(100% - 80px);
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:nth-child(4n) .step:after {
    width: 3px;
  }
}
#sec-course .course-list li:last-child .step:before, #sec-course .course-list li:last-child .step:after {
  display: none;
}
#sec-course .course-list li:nth-last-child(2) .step:before {
  content: "";
  display: block;
  width: 9px;
  height: 16px;
  background: url(../img/course/ico-arr-s.png) 0 0 no-repeat;
  position: absolute;
  right: -34px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:nth-last-child(2) .step:before {
    width: 19px;
    height: 7px;
    background: url(../img/course/ico-arr-down.png) 0 0 no-repeat;
    background-size: contain;
    top: auto;
    left: 14px;
    bottom: -22px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:not(:last-child) {
    margin-bottom: 35px;
  }
}
#sec-course .course-list li:after {
  content: "";
  display: block;
  position: absolute;
  right: -40px;
  top: 185px;
  width: 29px;
  height: 14px;
  background: url(../img/course/ico-arr-b.png) 0 0 no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li:after {
    display: none;
  }
}
#sec-course .course-list li.day {
  padding-top: 100px;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list li.day {
    padding: 0 30px;
  }
  #sec-course .course-list li.day img {
    min-width: 60px;
    width: 26%;
    height: auto;
    margin: auto;
  }
  #sec-course .course-list li.day figcaption {
    font-size: 13px;
    margin-top: 14px;
  }
  #sec-course .course-list li.day figcaption span {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5em;
  }
}
#sec-course .course-list h4 {
  text-align: center;
  margin: 15px 0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list h4 {
    font-size: 15px;
    margin: 0 0 22px;
  }
}
#sec-course .course-list figure {
  text-align: center;
}
#sec-course .course-list figure img {
  width: 165px;
  height: auto;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list figure img {
    min-width: 180px;
    width: calc(100% - 20px);
  }
}
#sec-course .course-list figcaption {
  width: calc(100% - 15px);
  text-align: left;
  font-size: 14px;
  margin: 27px auto 0;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list figcaption {
    font-size: 13px;
    width: 100%;
    margin-top: 26px;
    line-height: 1.8;
  }
}
#sec-course .course-list .step {
  position: relative;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list .step {
    position: absolute;
    top: 0;
    left: 10px;
    height: 100%;
  }
  #sec-course .course-list .step img {
    width: 41px;
    height: auto;
  }
  #sec-course .course-list .step:before {
    content: "";
    display: block;
    width: 19px;
    height: 7px;
    background: url(../img/course/ico-arr-down.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    left: 14px;
    bottom: -22px;
  }
}
#sec-course .course-list .step:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 76px;
  transform: translateY(-50%);
  width: calc(100% - 50px);
  height: 3px;
  background: url(../img/course/bg-border.png) 0 0 repeat;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list .step:after {
    width: 3px;
    height: calc(100% - 30px);
    background: url(../img/course/bg-border-down.png) 0 0 repeat;
    background-size: contain;
    position: static;
    transform: translateY(0);
    margin: 6px auto 0;
  }
}
#sec-course .bnr {
  width: 650px;
  height: 196px;
  margin: 0 auto 45px;
  background-color: #FFF;
  border: 3px solid #000;
  padding: 30px 40px 0;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #sec-course .bnr {
    width: 100%;
    height: auto;
    padding: 20px 35px 10px;
    margin: 0 0 25px;
  }
}
#sec-course .bnr .txt {
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  #sec-course .bnr .txt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  #sec-course .bnr .txt img {
    width: 174px;
  }
}
#sec-course .bnr a {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  #sec-course .bnr a {
    width: 105px;
  }
}
@media screen and (max-width: 750px) {
  #sec-course .bnr a img {
    width: 100%;
  }
}
#sec-course .bnr + .bnr {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  #sec-course .bnr + .bnr {
    margin-top: 30px;
  }
}
#sec-course .sp-course-spot-list {
  display: none;
  background-color: #FFF;
  border: 2px solid #000;
  border-top: none;
  padding: 20px;
}
@media screen and (max-width: 750px) {
  #sec-course .sp-course-spot-list {
    display: block;
  }
}
#sec-course .sp-course-spot-list ul {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: space-between;
  width: 100%;
}
#sec-course .sp-course-spot-list ul.day2-list {
  margin-top: 20px;
}
#sec-course .sp-course-spot-list ul + ul {
  margin-top: 10px;
}
#sec-course .sp-course-spot-list li {
  position: relative;
  display: block;
  min-width: 41px;
  box-sizing: border-box;
}
#sec-course .sp-course-spot-list li:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 48px;
  transform: translateY(-50%);
  width: calc(100% - 54px);
  height: 2px;
  background: url(../img/course/bg-border.png) 0 0 repeat;
  background-size: contain;
}
#sec-course .sp-course-spot-list li:nth-last-child(2):before {
  content: "";
  display: block;
  width: 6px;
  height: 13px;
  background: url(../img/course/ico-arr-s.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  right: 2px;
  top: 15px;
}
#sec-course .sp-course-spot-list li:not(:nth-child(4n)) {
  padding-right: calc((100% - 174px) / 3);
}
#sec-course .sp-course-spot-list li:nth-child(4n):after, #sec-course .sp-course-spot-list li:last-child:after {
  display: none;
}
#sec-course .sp-course-spot-list li:last-child {
  margin-right: auto;
}
#sec-course .sp-course-spot-list li:nth-child(n+5) {
  margin-top: 10px;
}
#sec-course .sp-course-spot-list p {
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-align: left;
  display: inline-block;
  margin-top: 9px;
  font-weight: bold;
}
#sec-course .sp-course-spot-list p.line2 {
  line-height: 1.3;
}
#sec-course .sp-course-spot-list .step.day {
  margin-top: -5px;
}
#sec-course .sp-course-spot-list .step img {
  width: 41px;
  height: auto;
}
#sec-course .sp-course-spot-list a {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  display: block;
  height: 100%;
}
@media screen and (max-width: 750px) {
  #sec-course .course-list-wrap {
    background: #FFF;
    margin-top: 25px;
    padding: 32px 0 55px;
  }
  #sec-course .item {
    width: 51%;
    margin: 0 auto;
  }
  #sec-course .item img {
    width: 100%;
    height: auto;
  }
}
#sec-course .oita-model-course-reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
}
@media screen and (max-width: 750px) {
  #sec-course .oita-model-course-reserve {
    row-gap: 46px;
  }
}
@media screen and (max-width: 750px) {
  #sec-course .oita-model-course-reserve-btn img {
    width: 240px;
  }
}
#sec-course .oita-model-course-reserve-illust img {
  width: 230px;
}
@media screen and (max-width: 750px) {
  #sec-course .oita-model-course-reserve-illust img {
    width: 165px;
  }
}

/*.mfp-content
----------------------------------------*/
.mfp-inline-holder .mfp-content {
  background: none;
}

.mfp-content {
  box-sizing: border-box;
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
}

@media screen and (max-width: 750px) {
  .mfp-content {
    padding: 7px;
  }
}
.mfp-custom-wrap {
  position: relative;
}

.mfp-iframe-scaler iframe {
  box-shadow: none;
}

.mfp-iframe-holder .mfp-close {
  top: -63px;
  right: -15px;
  width: 40px;
  height: 40px;
  background-color: #FFF;
  color: #000;
  padding: 0;
  text-align: center;
  font-size: 30px;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  font-weight: 200;
  opacity: 1;
  line-height: 1;
  border-radius: 4px;
}

@media screen and (max-width: 750px) {
  .mfp-iframe-holder .mfp-close {
    top: -42px;
    right: -7px;
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-arrow {
  opacity: 0;
  transition: all 0.4s ease;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/* image-popup
----------------------------------------*/
.image-popup .mfp-content {
  width: auto;
}

.image-popup.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease;
}

/* overlay animate in */
.image-popup.mfp-bg.mfp-ready {
  opacity: 0.7;
}

/* overlay animate out */
.image-popup.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.image-popup.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease;
}

/* content animate it */
.image-popup.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  padding: 0;
}

/* content animate out */
.image-popup.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/* content at start */
.image-popup.mfp-wrap .mfp-arrow {
  opacity: 0;
  transition: all 0.4s ease;
}

/* content animate it */
.image-popup.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

/* content animate out */
.image-popup.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

@media screen and (max-width: 750px) {
  .image-popup .mfp-container {
    padding: 30px 25px;
  }
}

/* image-modal
----------------------------------------*/
.image-modal {
  position: relative;
  background: #FFF;
  width: 765px;
  margin: 0 auto;
  padding: 65px 40px 40px;
  border: 3px solid #000;
}
@media screen and (max-width: 750px) {
  .image-modal {
    width: 100%;
    padding: 40px 30px 40px;
  }
}
.image-modal i {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 750px) {
  .image-modal i {
    width: 40px;
  }
  .image-modal i img {
    width: 100%;
    height: auto;
  }
}
.image-modal .photo {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 750px) {
  .image-modal .photo {
    margin-bottom: 23px;
  }
}
.image-modal .photo img {
  max-width: 450px;
  width: 100%;
}
.image-modal dt {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .image-modal dt {
    font-size: 16px;
  }
}
.image-modal dd {
  font-size: 15px;
  margin-top: 30px;
  padding-bottom: 25px;
}
@media screen and (max-width: 750px) {
  .image-modal dd {
    font-size: 13px;
    margin-top: 22px;
    padding-bottom: 10px;
  }
}
.image-modal .mfp-close {
  position: absolute;
  top: 29px;
  right: 29px;
  z-index: 200;
  width: 20px;
  height: 20px;
  background-color: #FFF;
  padding: 0;
  font-size: 0;
  opacity: 1;
  color: #FFF;
  cursor: pointer;
  background: url(../img/spot/btn-mfp-close.png) 0 0 no-repeat;
  background-size: cover;
}
.image-modal .mfp-close:after {
  display: none;
}
@media screen and (max-width: 750px) {
  .image-modal .mfp-close {
    width: 16px;
    height: 16px;
    top: 15px;
    right: 15px;
  }
}/*# sourceMappingURL=style.css.map */