@charset "UTF-8";
/**scss共通***/
img {
  width: 100%;
  height: auto;
}

img.climg {
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width:800px) {
  img.climg {
    image-rendering: auto;
  }
}

.test {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
.onmouse {
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
}
.onmouse:hover {
  opacity: 0.6;
  cursor: pointer;
}
/*.siryou.onmouse:hover {
  opacity: 1;
  cursor: default;
}*/
@media screen and (max-width:800px) {
  .onmouse:hover {
    opacity: 1;
  }
}

.fonts {
  font-family: "Copperplate", sans-serif;
}

html {
  overflow-y: scroll;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

img {
  border: 0;
  vertical-align: bottom;
}

nav ul {
  list-style: none;
}

ul li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 14px;
  /*
  font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
  */
  font-family: "Noto Serif JP", serif;
  text-align: left;
  line-height: 160%;
  color: #333;
  font-feature-settings: "palt";
}

.clearfix {
  zoom: 1;
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
}

/* link_nomal */
a {
  text-decoration: none;
  color: #333;
}

a:link {
  text-decoration: none;
  color: #333;
}

a:visited {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
  color: #333;
}

a:active {
  text-decoration: none;
  color: #333;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/**テキスト揃え**/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

.pc_only_inline {
  display: inline-block;
}

.sp_only_inline {
  display: none;
}

@media screen and (max-width:800px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
  .pc_only_inline {
    display: none;
  }
  .sp_only_inline {
    display: inline-block;
  }
}
.fade__up {
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 30px);
}
.fade__up.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
}
.fade__in.active {
  opacity: 1;
  transform: translate(0%, 0px);
}

.fade__in2 {
  -webkit-transition: all 1.2s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 1.2s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: translate(0%, 0px);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.fade__in2.active {
  opacity: 1;
  transform: translate(0%, 0px);
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.fade__big {
  -webkit-transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  transition: all 0.8s cubic-bezier(0.37, 0, 0.63, 1) 0.01s;
  opacity: 0;
  transform: scale(1.1);
}
.fade__big.active {
  opacity: 1;
  transform: scale(1);
}

.fade__big2 {
  -webkit-transition: all 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 1.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  opacity: 0;
  transform: scale(1.1);
  -ms-filter: blur(6px);
  filter: blur(6px);
}
.fade__big2.active {
  opacity: 1;
  transform: scale(1);
  -ms-filter: blur(0px);
  filter: blur(0px);
}

.scals {
  -webkit-transition: all 3.5s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 3.5s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transform: scale(1.075);
}
.scals.active {
  opacity: 1;
  transform: scale(1);
}

.fade__new {
  -webkit-transition: all 2.25s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  transition: all 2.25s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  filter: brightness(300%);
}
.fade__new.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(100%);
}

.anime_a_time1 {
  clip-path: inset(0% 0% 100% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time1 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time1.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time2 {
  clip-path: inset(0% 100% 0% 0 round 0px);
  transition: clip-path 1.5s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time2 {
    transition: clip-path 1s cubic-bezier(0.45, 0, 0.55, 1) 0.01s;
  }
}
.anime_a_time2.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.anime_a_time3 {
  clip-path: inset(0% 0% 0% 100% round 0px);
  transition: clip-path 1.5s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .anime_a_time3 {
    transition: clip-path 1.2s cubic-bezier(0.65, 0, 0.35, 1) 0.01s;
  }
}
.anime_a_time3.active {
  clip-path: inset(0% 0% 0% 0 round 0px);
}

.base_box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.base_box .size01 {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #fff;
  top: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box .size01.active {
  height: 0;
}
.base_box .size02 {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box .size02.active {
  width: 0;
}
.base_box .size03 {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #fff;
  top: 0;
  right: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box .size03.active {
  width: 0;
}
.base_box .size04 {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #fff;
  bottom: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box .size04.active {
  height: 0;
}

.base_box2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.base_box2 .size01 {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #002437;
  top: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box2 .size01.active {
  height: 0;
}
.base_box2 .size02 {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #002437;
  top: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box2 .size02.active {
  width: 0;
}
.base_box2 .size03 {
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: #002437;
  top: 0;
  right: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box2 .size03.active {
  width: 0;
}
.base_box2 .size04 {
  position: absolute;
  width: 100%;
  height: 50%;
  background-color: #002437;
  bottom: 0;
  left: 0;
  -webkit-transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 2.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
.base_box2 .size04.active {
  height: 0;
}

.delay1 {
  transition-delay: 0s;
}
@media screen and (max-width:800px) {
  .delay1 {
    transition-delay: 0s;
  }
}

.delay2 {
  transition-delay: 0.25s;
}
@media screen and (max-width:800px) {
  .delay2 {
    transition-delay: 0s;
  }
}

.delay3 {
  transition-delay: 0.5s;
}
@media screen and (max-width:800px) {
  .delay3 {
    transition-delay: 0s;
  }
}

.delay4 {
  transition-delay: 0.75s;
}
@media screen and (max-width:800px) {
  .delay4 {
    transition-delay: 0s;
  }
}

.delay5 {
  transition-delay: 1s;
}
@media screen and (max-width:800px) {
  .delay5 {
    transition-delay: 0s;
  }
}

.delay1sp {
  transition-delay: 0s;
}

.delay2sp {
  transition-delay: 0.3s;
}

.delay3sp {
  transition-delay: 0.6s;
}

.delay4sp {
  transition-delay: 0.9s;
}

.delay5sp {
  transition-delay: 1.2s;
}

html.no-webp .backgrond_webp {
  background-image: url(../images/pc.jpg);
}
@media screen and (max-width:800px) {
  html.no-webp .backgrond_webp {
    background-image: url(../images/sp.jpg);
  }
}

.backgrond_webp {
  width: 100%;
  max-width: 680px;
  height: 420px;
  background-image: url(../images/pc.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width:800px) {
  .backgrond_webp {
    background-image: url(../images/sp.webp);
  }
}

body {
  overflow-x: hidden;
}

/*****************************************/
.f60 {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f60 {
    font-size: 7.2vw;
  }
}

.f50 {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f50 {
    font-size: 8vw;
  }
}

.f40 {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:800px) {
  .f40 {
    font-size: 7.5vw;
  }
}

.f38 {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f38 {
    font-size: 7vw;
  }
}

.f36 {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:800px) {
  .f36 {
    font-size: 6.5vw;
  }
}

.f34 {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f34 {
    font-size: 6vw;
  }
}

.f32 {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f32 {
    font-size: 5.7vw;
  }
}

.f30 {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f30 {
    font-size: 5vw;
  }
}

.f28 {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f28 {
    font-size: 4.8vw;
  }
}

.f26 {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f26 {
    font-size: 4.6vw;
  }
}

.f24 {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f24 {
    font-size: 4.4vw;
  }
}

.f22 {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f22 {
    font-size: 4.2vw;
  }
}

.f20 {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f20 {
    font-size: 4vw;
  }
}

.f19 {
  font-size: 19px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f19 {
    font-size: 3.9vw;
  }
}

.f18 {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f18 {
    font-size: 3.8vw;
  }
}

.f17 {
  font-size: 17px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f17 {
    font-size: 3.6vw;
  }
}

.f16 {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f16 {
    font-size: 3.4vw;
  }
}

.f15 {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f15 {
    font-size: 3.3vw;
  }
}

.f14 {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:800px) {
  .f14 {
    font-size: 3.2vw;
  }
}

.f13 {
  font-size: 13px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f13 {
    font-size: 3vw;
  }
}

.f12 {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f12 {
    font-size: 2.4vw;
  }
}

.f11 {
  font-size: 11px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f11 {
    font-size: 2.3vw;
  }
}

.f10 {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  .f10 {
    font-size: 2.2vw;
  }
}

/*****************************************/
.f60res {
  font-size: 60px;
  line-height: 125%;
}
@media screen and (max-width:1200px) {
  .f60res {
    font-size: 5vw;
  }
}
@media screen and (max-width:800px) {
  .f60res {
    font-size: 7.2vw;
  }
}

.f50res {
  font-size: 50px;
  line-height: 125%;
}
@media screen and (max-width:1200px) {
  .f50res {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f50res {
    font-size: 8vw;
  }
}

.f46res {
  font-size: 46px;
  line-height: 135%;
}
@media screen and (max-width:1200px) {
  .f46res {
    font-size: 3.8333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f46res {
    font-size: 7.8vw;
  }
}

.f42res {
  font-size: 42px;
  line-height: 135%;
}
@media screen and (max-width:1200px) {
  .f42res {
    font-size: 3.5vw;
  }
}
@media screen and (max-width:800px) {
  .f42res {
    font-size: 7.6vw;
  }
}

.f40res {
  font-size: 40px;
  line-height: 135%;
}
@media screen and (max-width:1200px) {
  .f40res {
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f40res {
    font-size: 7.5vw;
  }
}

.f38res {
  font-size: 38px;
  line-height: 115%;
}
@media screen and (max-width:1200px) {
  .f38res {
    font-size: 3.1666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f38res {
    font-size: 7vw;
  }
}

.f36res {
  font-size: 36px;
  line-height: 115%;
}
@media screen and (max-width:1200px) {
  .f36res {
    font-size: 3vw;
  }
}
@media screen and (max-width:800px) {
  .f36res {
    font-size: 6.5vw;
  }
}

.f34res {
  font-size: 34px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f34res {
    font-size: 2.8333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f34res {
    font-size: 6vw;
  }
}

.f32res {
  font-size: 32px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f32res {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f32res {
    font-size: 5.7vw;
  }
}

.f30res {
  font-size: 30px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f30res {
    font-size: 2.5vw;
  }
}
@media screen and (max-width:800px) {
  .f30res {
    font-size: 5vw;
  }
}

.f28res {
  font-size: 28px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f28res {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f28res {
    font-size: 4.8vw;
  }
}

.f26res {
  font-size: 26px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f26res {
    font-size: 2.1666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f26res {
    font-size: 4.6vw;
  }
}

.f24res {
  font-size: 24px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f24res {
    font-size: 2vw;
  }
}
@media screen and (max-width:800px) {
  .f24res {
    font-size: 4.4vw;
  }
}

.f22res {
  font-size: 22px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f22res {
    font-size: 1.8333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f22res {
    font-size: 4.2vw;
  }
}

.f20res {
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f20res {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f20res {
    font-size: 4vw;
  }
}

.f19res {
  font-size: 19px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f19res {
    font-size: 1.5833333333vw;
  }
}
@media screen and (max-width:800px) {
  .f19res {
    font-size: 3.9vw;
  }
}

.f18res {
  font-size: 18px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f18res {
    font-size: 1.5vw;
  }
}
@media screen and (max-width:800px) {
  .f18res {
    font-size: 3.8vw;
  }
}

.f17res {
  font-size: 17px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f17res {
    font-size: 1.4166666667vw;
  }
}
@media screen and (max-width:800px) {
  .f17res {
    font-size: 3.6vw;
  }
}

.f16res {
  font-size: 16px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f16res {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f16res {
    font-size: 3.4vw;
  }
}

.f15res {
  font-size: 15px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f15res {
    font-size: 1.25vw;
  }
}
@media screen and (max-width:800px) {
  .f15res {
    font-size: 3.3vw;
  }
}

.f14res {
  font-size: 14px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f14res {
    font-size: 1.1666666667vw;
  }
}
@media screen and (max-width:800px) {
  .f14res {
    font-size: 3.2vw;
  }
}

.f13res {
  font-size: 13px;
  line-height: 140%;
}
@media screen and (max-width:1200px) {
  .f13res {
    font-size: 1.0833333333vw;
  }
}
@media screen and (max-width:800px) {
  .f13res {
    font-size: 3vw;
  }
}

.f12res {
  font-size: 12px;
  line-height: 125%;
}
@media screen and (max-width:1200px) {
  .f12res {
    font-size: 1vw;
  }
}
@media screen and (max-width:800px) {
  .f12res {
    font-size: 2.4vw;
  }
}

.f11res {
  font-size: 11px;
  line-height: 125%;
}
@media screen and (max-width:1200px) {
  .f11res {
    font-size: 0.9166666667vw;
  }
}
@media screen and (max-width:800px) {
  .f11res {
    font-size: 2.3vw;
  }
}

.f10res {
  font-size: 10px;
  line-height: 125%;
}
@media screen and (max-width:1200px) {
  .f10res {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width:800px) {
  .f10res {
    font-size: 2.2vw;
  }
}

/*****************************************/
@media print {
  body {
    min-width: 1200px;
  }
  .fade__up {
    opacity: 1;
  }
  .fade__in {
    opacity: 1;
  }
}
/**********************/
@media screen and (max-width:800px) {
  .f10sp {
    font-size: calc(10 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f11sp {
    font-size: calc(11 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f12sp {
    font-size: calc(12 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f13sp {
    font-size: calc(13 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f14sp {
    font-size: calc(14 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f15sp {
    font-size: calc(15 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f16sp {
    font-size: calc(16 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f17sp {
    font-size: calc(17 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f18sp {
    font-size: calc(18 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f19sp {
    font-size: calc(19 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f20sp {
    font-size: calc(20 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f21sp {
    font-size: calc(21 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f22sp {
    font-size: calc(22 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f23sp {
    font-size: calc(23 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f24sp {
    font-size: calc(24 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f25sp {
    font-size: calc(25 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f26sp {
    font-size: calc(26 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f27sp {
    font-size: calc(27 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f28sp {
    font-size: calc(28 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f29sp {
    font-size: calc(29 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f30sp {
    font-size: calc(30 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f31sp {
    font-size: calc(31 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f32sp {
    font-size: calc(32 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f33sp {
    font-size: calc(33 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f34sp {
    font-size: calc(34 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f35sp {
    font-size: calc(35 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f36sp {
    font-size: calc(36 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f37sp {
    font-size: calc(37 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f38sp {
    font-size: calc(38 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f39sp {
    font-size: calc(39 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f40sp {
    font-size: calc(40 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f41sp {
    font-size: calc(41 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f42sp {
    font-size: calc(42 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f43sp {
    font-size: calc(43 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f44sp {
    font-size: calc(44 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f45sp {
    font-size: calc(45 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f46sp {
    font-size: calc(46 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f47sp {
    font-size: calc(47 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f48sp {
    font-size: calc(48 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f49sp {
    font-size: calc(49 / 750 * 100vw);
  }
}

@media screen and (max-width:800px) {
  .f50sp {
    font-size: calc(50 / 750 * 100vw);
  }
}

.fonts {
  font-family: "Cinzel", serif;
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

#headSP {
  width: 100%;
  height: 84px;
}
@media screen and (max-width:800px) {
  #headSP {
    height: 62px;
  }
}

#headSP_black {
  width: 100%;
  height: 84px;
  background-color: #000;
}
@media screen and (max-width:800px) {
  #headSP_black {
    height: 62px;
  }
}

header {
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
}
header .header__in {
  width: 100%;
  position: relative;
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5vw;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  header .header__in {
    height: 60px;
    padding: 0 5vw;
    /*background : linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 60%);*/
  }
}
header .header__in.color {
  background-color: #000;
}
header .header__in.color2 {
  background-color: #000;
}
header .logotop {
  width: 45%;
  max-width: 302px;
}
@media screen and (max-width:800px) {
  header .logotop {
    width: 72%;
    max-width: 260px;
    margin: 0 auto;
    padding-top: 0px;
  }
}
header .menu_waku {
  width: 50%;
  text-align: right;
}
@media screen and (max-width:800px) {
  header .menu_waku {
    width: 32px;
  }
}
header .menu_waku ul {
  width: 100%;
  max-width: calc(410px + 10.5em);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 0 0 auto;
}
@media screen and (max-width:800px) {
  header .menu_waku li {
    display: none;
  }
}
header .menu_waku a {
  color: #fff;
  display: inline-block;
  margin-left: 2.5em;
}
header .menu_waku a.lasts {
  margin-left: 1.25em;
}
header .menu_waku a.siryou {
  display: inline-block;
  background-color: #752C39;
  /*background-color: #333;*/
  padding: 0.75em 1.75em 0.8em 1.75em;
  /*color: #666;*/
}
header .menu_waku a.entrybt {
  display: inline-block;
  background-color: #947748;
  padding: 0.75em 1.75em 0.8em 1.75em;
}
header .menu_waku .menubotan {
  width: 42px;
  height: 42px;
  margin-left: 20px;
  position: relative;
}
@media screen and (max-width:800px) {
  header .menu_waku .menubotan {
    width: 32px;
    height: 32px;
    margin-left: 0px;
  }
}
header .menu_waku .menubotan:hover {
  cursor: pointer;
}
header .menu_waku .menubotan .intext {
  position: absolute;
  width: 100%;
  text-align: center;
  left: 0;
  bottom: 0;
  color: #fff;
  font-size: 12px;
  line-height: 100%;
}
@media screen and (max-width:800px) {
  header .menu_waku .menubotan .intext {
    font-size: 10px;
    bottom: -5px;
  }
}
header .menu_waku .menubotan .line01 {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
header .menu_waku .menubotan .line02 {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
}
header .menu_waku .menubotan .line03 {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 20px;
  left: 0;
}
header .menubotan_dami {
  display: none;
}
@media screen and (max-width:800px) {
  header .menubotan_dami {
    display: block;
    width: 32px;
    height: 32px;
  }
}

/***********************************/
footer {
  width: 100%;
  background-color: #fff;
  position: relative;
  z-index: 15;
  padding: 45px 0 75px 0;
}
footer.colors {
  background-color: #E6E8E6;
}
footer .section__in {
  width: 90%;
  max-width: 820px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 40px auto;
}
footer .section__in .centers {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width:800px) {
  footer .section__in .centers {
    width: 100%;
    flex-wrap: wrap;
  }
}
footer .section__in .centers .t01 {
  width: 28%;
}
@media screen and (max-width:800px) {
  footer .section__in .centers .t01 {
    width: 100%;
    text-align: center;
  }
}
footer .section__in .centers .t02 {
  width: 32.92%;
  margin: 0 1.8% 0 0%;
}
@media screen and (max-width:800px) {
  footer .section__in .centers .t02 {
    width: 90%;
    margin: 1.5em auto;
  }
}
footer .section__in .centers .t03 {
  width: 39%;
}
@media screen and (max-width:800px) {
  footer .section__in .centers .t03 {
    width: 100%;
    text-align: center;
    margin-bottom: 1.5em;
    line-height: 140%;
  }
}
footer .section__in2 {
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
footer .section__in2 .centers {
  width: 49%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto 40px auto;
}
@media screen and (max-width:800px) {
  footer .section__in2 .centers {
    width: 100%;
    flex-wrap: wrap;
    margin: 0 auto 10px auto;
  }
}
footer .section__in2 .centers .t01 {
  width: 52.59%;
  padding-bottom: 2px;
}
@media screen and (max-width:800px) {
  footer .section__in2 .centers .t01 {
    width: 76%;
    text-align: center;
    margin: 0 auto;
  }
}
footer .section__in2 .centers .t02 {
  width: 42.22%;
}
@media screen and (max-width:800px) {
  footer .section__in2 .centers .t02 {
    width: 72%;
    margin: 1.5em auto;
  }
}
footer .long {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width:800px) {
  footer .long {
    text-align: center;
  }
}

/***********************************/
#atenstion01 {
  width: 100%;
  padding: 35px 0;
  background-color: #002437;
  color: #fff;
  position: relative;
  z-index: 15;
}
#atenstion01 .section__in {
  width: 95%;
  margin: 0 auto;
  line-height: 160%;
}
@media screen and (max-width:800px) {
  #atenstion01 .section__in {
    width: 90%;
  }
}

/************************/
#sp_foot_menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 999;
}
@media screen and (max-width:800px) {
  #sp_foot_menu {
    display: block;
  }
}
#sp_foot_menu ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#sp_foot_menu ul li {
  width: calc(100% / 3);
  /*width: 50%;*/
}
/*#sp_foot_menu ul li:nth-child(2) {
  display: none;
}*/
#sp_foot_menu ul li a.list01 {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
  border-right: 1px solid #999;
}
#sp_foot_menu ul li a.list02 {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  background-color: #000;
  color: #fff;
}
#sp_foot_menu ul li a.list02b {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  background-color: #752C39;
  color: #fff;
}
#sp_foot_menu ul li a.list03 {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  background-color: #947748;
  color: #fff;
}
#sp_foot_menu ul li span {
  display: block;
  width: 100%;
  text-align: center;
}

.section__in__cv {
  width: 90%;
  max-width: 615px;
  margin: 80px auto 0 auto;
}
@media screen and (max-width:800px) {
  .section__in__cv {
    margin: 40px auto 0 auto;
  }
}
.section__in__cv .subtext {
  width: 120%;
  text-align: center;
  color: #fff;
  margin-bottom: 0.75em;
  margin: 0.75em -10% 0em -10%;
}
.section__in__cv .botancenter {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
.section__in__cv .botancenter .item01 {
  width: 100%;
  max-width: 298px;
}
@media screen and (max-width:800px) {
  .section__in__cv .botancenter .item01 {
    max-width: 800px;
    margin-bottom: 5vw;
  }
}
.section__in__cv .botancenter .item02 {
  width: 100%;
  max-width: 298px;
}
@media screen and (max-width:800px) {
  .section__in__cv .botancenter .item02 {
    max-width: 800px;
  }
}
.section__in__cv .botancenter a.linkbt01 {
  width: 100%;
  max-width: 298px;
  padding: 1em 0 1.2em 0;
  background-color: #A58553;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.section__in__cv .botancenter a.linkbt02 {
  width: 100%;
  max-width: 298px;
  padding: 1em 0 1.2em 0;
  background-color: #752C39;
  /*background-color: #333;*/
  color: #fff;
  /*color: #666;*/
  text-align: center;
  display: inline-block;
}
/*.section__in__cv .botancenter a.linkbt02:hover {
  opacity: 1;
  cursor: default;
}*/
/*************************/
#main_navs.active::-webkit-scrollbar {
  display: none;
}

#main_navs {
  width: 325px;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  height: 0;
  transition: all 0.8s ease-out 0.01s;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width:800px) {
  #main_navs {
    width: 100%;
    height: 0;
    transition: all 0.5s ease-out 0.01s;
  }
}
@media screen and (max-width:800px) {
  #main_navs .navins ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #main_navs .navins ul li {
    width: 50%;
  }
  #main_navs .navins ul li.morelinlk {
    margin-top: 3.5em;
  }
  #main_navs .navins ul li .eng.f40sp {
    font-size: 3.8vw;
    font-weight: 500;
    letter-spacing: 0;
  }
  #main_navs .navins ul li:nth-child(2) .eng.f40sp {
    letter-spacing: -0.025em;
  }
  #main_navs .navins ul li .jpn.f20sp {
    font-size: 2.5vw;
  }
}
#main_navs.active {
  height: 100vh;
}
@media screen and (max-width:800px) {
  #main_navs.active {
    height: 110vh;
  }
}
#main_navs .navins {
  width: 100%;
  padding: 15px 28px 35px 28px;
  background-color: rgb(255, 255, 255);
  transition: all 0.4s ease-out 0.01s;
}
@media screen and (max-width:800px) {
  #main_navs .navins {
    min-height: 110vh;
    padding: 75px 5vw 5vw 5vw;
    padding-bottom: 200px;
  }
}
#main_navs a {
  display: block;
  width: 100%;
  color: #000;
  position: relative;
  font-weight: 400;
}
#main_navs a::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(../images/icon_yaji.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width:800px) {
  #main_navs a::after {
    display: none;
  }
}
#main_navs a.nolinks {
  opacity: 0.3;
}
#main_navs a .newicon {
  position: relative;
  display: inline-block;
}
#main_navs a .newicon::after {
  content: "NEW";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: calc(100% + 10px);
  font-size: 12px;
  padding: 0.25em 0.4em 0.15em 0.4em;
  background-color: #752C39;
  color: #fff;
  line-height: 100%;
}
@media screen and (max-width:800px) {
  #main_navs a .newicon::after {
    font-size: 2.8vw;
    left: calc(100% + 1vw);
    padding: 0.25em 0.4em 0.15em 0.4em;
  }
}
#main_navs a.newicon2 {
  position: relative;
  display: inline-block;
}
#main_navs a.newicon2::after {
  content: "NEW";
  position: absolute;
  top: -0.5em;
  left: 0%;
  font-size: 10px;
  padding: 0.1em 0.4em 0.25em 0.4em;
  background-color: #c10c0c;
  color: #fff;
  line-height: 100%;
}
#main_navs a.raijyo_bt {
  margin-top: 1.5em;
  width: 100%;
  padding: 0.6em 0 0.7em 0;
  text-align: center;
  background-color: #752C39;
  /*background-color: #333;*/
  color: #fff;
  /*color: #666;*/
  line-height: 100%;
}
/*#main_navs a.raijyo_bt:hover {
  cursor: default;
  opacity: 1;
}*/
#main_navs a.raijyo_bt::after {
  content: none;
}
#main_navs a.siryou_bt {
  margin-top: 0.5em;
  width: 100%;
  padding: 0.6em 0 0.7em 0;
  text-align: center;
  background-color: #947748;
  color: #fff;
  line-height: 100%;
}
#main_navs a.siryou_bt::after {
  content: none;
}
#main_navs .menuinlogo {
  width: 260px;
  position: absolute;
  top: 20px;
  left: 5vw;
  display: none;
}
@media screen and (max-width:800px) {
  #main_navs .menuinlogo {
    display: block;
  }
}
#main_navs ul {
  font-weight: 500;
  border-top: 1px solid #000;
}
#main_navs ul li {
  border-bottom: 1px solid #000;
}
#main_navs ul li a {
  display: inline-block;
  padding: 0.75em 0;
}
#main_navs ul li .eng {
  line-height: 120%;
}
#main_navs ul li .jpn {
  line-height: 120%;
}
#main_navs .closenavs {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 0 20px auto;
  /*
  &::after{
    content:"CLOSE";
    position: absolute;
    width: 100%;
    text-align: center;
    top:110%;
    left:0;
    color:#000;
    font-size: 9px;
    line-height: 0%;
    letter-spacing: 0.1em;
    font-family: "Aldrich", sans-serif;
    opacity: 0.9;
    @media screen and (max-width:800px) {
      top:105%;
    }
  }
    */
}
@media screen and (max-width:800px) {
  #main_navs .closenavs {
    position: absolute;
    top: 10px;
    right: 5vw;
  }
}
#main_navs .closenavs:hover {
  cursor: pointer;
}
#main_navs .closenavs .line02 {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 0;
  transition: all 0.4s ease-out 0.01s;
  transform: rotate(45deg);
}
#main_navs .closenavs .line02b {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: 50%;
  left: 0;
  transition: all 0.4s ease-out 0.01s;
  transform: rotate(-45deg);
}

.nav_close {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99995;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.nav_close.active {
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.65);
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: url(../images/overlay.png) repeat 0 0;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

#colorbox {
  outline: 0;
  margin: 0px 0 0px 0;
}

#cboxTopLeft {
  display: none;
  width: 21px;
  height: 0px;
  background: url(images/controls.png) no-repeat -101px 0;
}

#cboxTopRight {
  display: none;
  width: 21px;
  height: 0px;
  background: url(images/controls.png) no-repeat -130px 0;
}

#cboxBottomLeft {
  display: none;
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -101px -29px;
}

#cboxBottomRight {
  display: none;
  width: 21px;
  height: 21px;
  background: url(images/controls.png) no-repeat -130px -29px;
}

#cboxMiddleLeft {
  width: 0px;
  background: url(images/controls.png) left top repeat-y;
}

#cboxMiddleRight {
  width: 0px;
  background: url(images/controls.png) right top repeat-y;
}

#cboxTopCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 0 repeat-x;
}

#cboxBottomCenter {
  display: none;
  height: 0px;
  background: url(images/border.png) 0 -29px repeat-x;
}

#cboxContent { /*background:#fff*/
  overflow: hidden;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 0px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

#cboxLoadingOverlay {
  background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

#cboxPrevious {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/controls.png) no-repeat -75px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxPrevious:hover {
  background-position: -75px -25px;
}

#cboxNext {
  position: absolute;
  bottom: 0;
  left: 27px;
  background: url(images/controls.png) no-repeat -50px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxNext:hover {
  background-position: -50px -25px;
}

#cboxClose {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(images/controls.png) no-repeat -25px 0;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

#cboxClose:hover {
  background-position: -25px -25px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}/*# sourceMappingURL=style.css.map */