/*--------------------------------------
  Utility Styles
---------------------------------------*/
.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.sp-none {
  display: inherit;
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.pc-none {
  display: none;
}

@media (max-width: 768px) {
  .pc-none {
    display: inherit;
  }
}

ul.inline {
  display: inline-block;
}

ul.inline li {
  display: inline-block;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
    opacity: 0;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 10px;
}

body {
  background: #de353c;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  body {
    font-size: 1.1rem;
  }
}

/*
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: 'Cocogoose', serif;
  line-height: 1;
}

h1 {
  font-size: 16rem;
  small {
    display: block;
    line-height: 0.5;
    font-size: 7.5rem;
  }
  @media (max-width: $breakpoint) {
    font-size: 10rem;
    small {
      font-size: 4.5rem;
    }
  }
}
h2 {
  font-size: 6.5rem;
  @media (max-width: $breakpoint) {
    font-size: 6rem;
  }
}


h4 {
  font-size: 2.5rem;
  @media (max-width: $breakpoint) {
    font-size: 2rem;
  }
}
*/
a {
  text-decoration: underline;
}

li {
  list-style: none;
}

.button {
  display: block;
  cursor: pointer;
}

.button.outline1 {
  width: 400px;
  height: 60px;
  line-height: 58px;
  border: 1px solid #de353c;
  color: #de353c;
  margin: 0 auto;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}

@media (max-width: 768px) {
  .button.outline1 {
    width: 53.33333vw;
    height: 8vw;
    line-height: 8vw;
    border-radius: 4vw;
    font-size: 2.66667vw;
  }
}

.button.outline1 span:after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  width: 15px;
  height: 1px;
  background: #de353c;
}

@media (max-width: 768px) {
  .button.outline1 span:after {
    right: 3.06667vw;
    width: 2vw;
  }
}

.button.outline1 span:before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -7px;
  width: 1px;
  height: 15px;
  background: #de353c;
}

@media (max-width: 768px) {
  .button.outline1 span:before {
    right: 4vw;
    height: 2vw;
    margin-top: -0.93333vw;
  }
}

.button.color1, .button.color2 {
  width: 600px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  line-height: 80px;
  margin: 0 auto;
  background: #de353c;
  color: #FFF;
  text-decoration: none;
  font-size: 20px;
  -webkit-box-shadow: 0 5px 0 0 #e6e6e6;
          box-shadow: 0 5px 0 0 #e6e6e6;
  position: relative;
}

@media (max-width: 768px) {
  .button.color1, .button.color2 {
    width: 80vw;
    height: 13.33333vw;
    line-height: 13.33333vw;
    font-size: 3.73333vw;
    -webkit-box-shadow: 0 1.33333vw 0 0 #e6e6e6;
            box-shadow: 0 1.33333vw 0 0 #e6e6e6;
  }
}

.button.color1 span:after, .button.color2 span:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -6px;
}

@media (max-width: 768px) {
  .button.color1 span:after, .button.color2 span:after {
    right: 5.33333vw;
    width: 1.6vw;
    height: 1.6vw;
    border-right: 0.53333vw solid #fff;
    border-bottom: 0.53333vw solid #fff;
    margin-top: -1.06667vw;
  }
}

.button.outline1 span:after, .button.outline1 span:before {
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}

.button.outline1:hover {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: #de353c;
  color: #fff;
}

.button.outline1:hover span:after, .button.outline1:hover span:before {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: #fff;
}

.button.color1 {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
}

.button.color1:hover {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: -webkit-gradient(linear, left top, right top, from(#e60213), to(#ee7c00));
  background: linear-gradient(90deg, #e60213, #ee7c00);
}

.button.color2 {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: -webkit-gradient(linear, left top, right top, from(#6699ff), to(#000099));
  background: linear-gradient(90deg, #6699ff, #000099);
}

.button.color2:hover {
  -webkit-transition: color 0s ease, background 0s ease;
  transition: color 0s ease, background 0s ease;
  background: -webkit-gradient(linear, left top, right top, from(#e60213), to(#ee7c00));
  background: linear-gradient(90deg, #e60213, #ee7c00);
}

.st-HeaderRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.st-FooterRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 1100px;
  padding: 0 30px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .st-FooterRow {
    padding: 0 4vw;
    display: block;
  }
}

.st-Content {
  /*
  @media (max-width: $breakpoint) {
    display: block;
  }
  */
}

.st-Content .st-ContentInner {
  text-align: center;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .st-Content .st-ContentInner {
    padding: 0 4vw;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  overflow: hidden;
}

#loader svg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

#loader svg circle {
  stroke-dasharray: 110 377;
  stroke: #fff;
  fill: transparent;
  stroke-width: 4px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-name: rotate;
          animation-name: rotate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

#loader #stripes {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(-42deg) scaleX(1.2);
          transform: skewX(-42deg) scaleX(1.2);
  pointer-events: none;
}

@media (max-width: 768px) {
  #loader #stripes {
    -webkit-transform: skewX(-42deg) scaleX(1.8);
            transform: skewX(-42deg) scaleX(1.8);
  }
}

#loader #stripes .stripe {
  position: absolute;
  width: 40%;
  height: 100%;
  pointer-events: none;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  background: #d71718;
}

#loader #stripes .stripe:nth-child(1) {
  left: -30%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(2) {
  left: 0%;
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

#loader #stripes .stripe:nth-child(3) {
  left: 30%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(4) {
  left: 60%;
  -webkit-transform-origin: center 100%;
          transform-origin: center 100%;
}

#loader #stripes .stripe:nth-child(5) {
  left: 90%;
  -webkit-transform-origin: center 0;
          transform-origin: center 0;
}

#loader #stripes .stripe:nth-child(1), #loader #stripes .stripe:nth-child(5) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#loader #stripes .stripe:nth-child(2), #loader #stripes .stripe:nth-child(4) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

#loader.hide {
  pointer-events: none;
}

#loader.hide svg {
  opacity: 0;
}

#loader.hide #stripes .stripe {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

#header {
  position: relative;
  width: 100%;
  z-index: 100;
  background: #ffffff;
}

#header .st-HeaderRow--Cell {
  padding: 17px 30px;
}

@media (max-width: 768px) {
  #header .st-HeaderRow--Cell {
    padding: 2vw;
  }
}

#header .chariloto-logo,
#header .mixiGroup-logo {
  display: inline-block;
}

#header .chariloto-logo img,
#header .mixiGroup-logo img {
  vertical-align: top;
  width: auto;
  height: 45px;
}

@media (max-width: 768px) {
  #header .chariloto-logo img,
  #header .mixiGroup-logo img {
    height: 8.53333vw;
  }
}

#top {
  position: relative;
}

#top #kv.show .title img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

#top #kv.show .banner {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

#top #kv {
  background: -webkit-gradient(linear, left top, left bottom, from(#de353c), to(#d71718));
  background: linear-gradient(#de353c, #d71718);
  position: relative;
}

#top #kv .title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

#top #kv .title img {
  -webkit-transition: opacity 0.1s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.1s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.1s ease;
  transition: transform 0.4s ease, opacity 0.1s ease, -webkit-transform 0.4s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-delay: 0.0s;
          transition-delay: 0.0s;
  opacity: 0;
}

@media (max-width: 768px) {
  #top #kv .title {
    -webkit-transform: none;
            transform: none;
    margin-top: -5.6vw;
    margin-left: -29.46667vw;
  }
}

#top #kv .title img {
  width: 506px;
  height: auto;
}

@media (max-width: 1100px) {
  #top #kv .title img {
    width: 46vw;
  }
}

@media (max-width: 768px) {
  #top #kv .title img {
    width: 58.93333vw;
  }
}

#top #kv .banner {
  position: absolute;
  right: 30px;
  bottom: 70px;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  -webkit-transition: opacity 0.1s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.1s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.1s ease;
  transition: transform 0.2s ease, opacity 0.1s ease, -webkit-transform 0.2s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  opacity: 0;
}

#top #kv .banner:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

#top #kv .banner:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .5);
  border-radius: 50%;
  -webkit-animation-name: ripple;
          animation-name: ripple;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

#top #kv .banner:hover:before {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#top #kv .banner:hover::after {
  display: none;
}

@media (max-width: 1100px) {
  #top #kv .banner {
    width: 17.81818vw;
    height: 17.81818vw;
  }
  #top #kv .banner img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  #top #kv .banner {
    right: 2.66667vw;
    bottom: -8.53333vw;
    width: 31.33333vw;
    height: 31.33333vw;
  }
}

#top #kv .banner img {
  width: 196px;
  height: auto;
}

@media (max-width: 1100px) {
  #top #kv .banner img {
    width: 17.81818vw;
    height: 17.81818vw;
  }
}

@media (max-width: 768px) {
  #top #kv .banner img {
    width: 31.33333vw;
    height: auto;
  }
}

#top #kv .img-left img, #top #kv .img-right img, #top #kv .img-sp img {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 2400px;
}

#top #kv .img-right {
  position: absolute;
  top: 0;
  right: 0;
}

#top .page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1100px;
  padding: 0 30px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

#top .page-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  background: #fff;
  line-height: 1.5;
  height: 80px;
  padding-left: 40px;
  text-decoration: none;
  color: #de353c;
  position: relative;
}

#top .page-nav a:first-child {
  border-radius: 8px 0 0 8px;
}

@media (max-width: 1100px) {
  #top .page-nav a {
    padding-left: 20px;
  }
}

#top .page-nav a:hover {
  color: #ee7c00;
}

#top .page-nav a:hover span:after, #top .page-nav a:hover span:before {
  border-color: #ee7c00;
}

#top .page-nav a span {
  -ms-flex-item-align: center;
      align-self: center;
}

#top .page-nav a + a {
  border-left: 1px solid #e5e5e5;
}

#top .page-nav a .br1 {
  display: none;
}

@media (max-width: 1100px) {
  #top .page-nav a .br1 {
    display: block;
  }
}

#top .page-nav a:last-child {
  border-radius: 0 8px 8px 0;
  padding-left: 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#6699ff), to(#000099));
  background: linear-gradient(90deg, #6699ff, #000099);
}

#top .page-nav a:last-child span {
  margin: 0 auto;
}

#top .page-nav a:last-child:hover {
  background: -webkit-gradient(linear, left top, right top, from(#e60213), to(#ee7c00));
  background: linear-gradient(90deg, #e60213, #ee7c00);
}

#top .page-nav a:last-child span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -4px;
  border-color: #fff;
}

#top .page-nav a span:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #de353c;
  border-bottom: 2px solid #de353c;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -6px;
}

@media (max-width: 768px) {
  #top .page-nav a span:after {
    width: 1.06667vw;
    height: 1.06667vw;
    border-right: 0.53333vw solid #fff;
    border-bottom: 0.53333vw solid #fff;
    margin-top: -0.8vw;
  }
}

@media (max-width: 768px) {
  #top .page-nav {
    display: none;
  }
}

#campaign {
  background: #b82c32 url(../img/cp_bg_photo.jpg);
  background-size: cover;
  padding: 100px 30px;
}

@media (max-width: 768px) {
  #campaign {
    padding: 13.33333vw 4vw;
  }
}

#campaign .st-ContentInner {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
}

#campaign.show .st-ContentInner {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

#campaign .st-ContentFooter {
  padding: 34px 0 65px;
}

@media (max-width: 768px) {
  #campaign .st-ContentFooter {
    padding: 5.33333vw 0 9.33333vw;
  }
}

#campaign .st-ContentFooter .button + .button {
  margin-top: 40px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #campaign .st-ContentFooter .button + .button {
    margin-top: 5.33333vw;
	  margin-bottom: 10px;
  }
}

#campaign .st-ContentInner {
  max-width: 1040px;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#campaign .st-ContentInner .st-ContentBody img {
  width: 100%;
  height: auto;
}

#campaign2 .st-Content .st-ContentInner{
  padding: -500px
}

#campaign2 {
  background: #ffffff;
  background-size: cover;
  padding: 50px 0px;
}

@media (max-width: 768px) {
  #campaign2 {
    padding: 2.33333vw 0vw;
  }
}

#campaign2 .st-ContentInner {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
}

#campaign2.show .st-ContentInner {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

#campaign2 .st-ContentFooter {
  padding: 34px 0 0px;
}

@media (max-width: 768px) {
  #campaign2 .st-ContentFooter {
    padding: 5.33333vw 0 9.33333vw;
  }
}

#campaign2 .st-ContentFooter .button + .button {
  margin-top: 40px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  #campaign2 .st-ContentFooter .button + .button {
    margin-top: 5.33333vw;
	  margin-bottom: 10px;
  }
}

#campaign2 .st-ContentInner {
  max-width: 1040px;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

#campaign2 .st-ContentInner .st-ContentBody img {
  width: 100%;
  height: auto;
}


#charica .st-ContentHeader,
#charica .box1,
#charica .box2,
#charica .st-ContentFooter,
#example .st-ContentHeader,
#example .box1,
#example .box2,
#example .st-ContentFooter {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
}

#charica .box1,
#example .box1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

#charica .box2,
#example .box2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

#charica .st-ContentFooter,
#example .st-ContentFooter {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

#charica.show .st-ContentHeader,
#charica.show .box1,
#charica.show .box2,
#charica.show .st-ContentFooter,
#example.show .st-ContentHeader,
#example.show .box1,
#example.show .box2,
#example.show .st-ContentFooter {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

#chariloto .st-ContentInner {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.4s ease;
  transition: transform 0.6s ease, opacity 0.4s ease, -webkit-transform 0.6s ease;
}

#chariloto.show .st-ContentInner {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

#charica {
  padding: 10px 0;
}

@media (max-width: 768px) {
  #charica {
    padding: 3vw 0;
  }
}

#charica .st-ContentHeader {
  /*
    margin-bottom: 60px;
    @media (max-width: $breakpoint) {
      margin-bottom: (50/750)*100vw;
    }*/
}

#charica .st-ContentHeader p {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  margin-top: 30px;
}

@media (max-width: 768px) {
  #charica .st-ContentHeader p {
    margin-top: 2.66667vw;
    font-size: 5.33333vw;
    line-height: 6.93333vw;
  }
}

#charica .st-ContentHeader img {
  width: 361px;
  height: auto;
}

@media (max-width: 768px) {
  #charica .st-ContentHeader img {
    width: 67.46667vw;
  }
}

#charica .box1 .boxHeader {
  background: url(../img/charica-b1-title_pc.png) center no-repeat;
  background-size: 1040px auto;
}

#charica .box2 .boxHeader {
  background: url(../img/charica-b2-title_pc.png) center no-repeat;
  background-size: 1040px auto;
}

#charica .boxHeader {
  height: 24px;
}

#charica .boxHeader p {
  display: none;
}

@media (max-width: 768px) {
  #charica .boxHeader {
    height: auto;
  }
  #charica .boxHeader p {
    display: inherit;
    line-height: 1;
    font-size: 0;
  }
  #charica .boxHeader img {
    width: 100%;
    height: auto;
  }
}

#charica .st-ContentBody {
  /*
    p {
      color: #de353c;
      font-size: 20px;
      line-height: 1;
      @media (max-width: $breakpoint) {
        font-size: (36/750)*100vw;
        line-height: (48/750)*100vw;
      }
    }*/
}

#charica .st-ContentBody .box {
  /*
      &+.box {
        border-top: 1px solid #e5e5e5;
        margin-top: 60px;
        @media (max-width: $breakpoint) {
          margin-top: (60/750)*100vw;
        }
      }*/
}

#charica .st-ContentBody .box .boxBody .colored {
  border-radius: 8px;
  overflow: hidden;
  background: #de353c;
}

#charica .st-ContentBody .box .boxBody .colored .button {
  margin: 40px auto;
}

@media (max-width: 768px) {
  #charica .st-ContentBody .box .boxBody .colored .button {
    margin: 5.33333vw auto;
  }
}

#charica .st-ContentBody .box .boxBody img {
  width: 100%;
  height: auto;
}

#charica .st-ContentBody .box .boxHeader {
  margin-top: 60px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  #charica .st-ContentBody .box .boxHeader {
    margin-top: 8vw;
    margin-bottom: 2.66667vw;
  }
}

#charica .box1 .boxBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#charica .box1 .boxBody .colored {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-preferred-size: calc(33.33% - 20px);
      flex-basis: calc(33.33% - 20px);
}

@media (max-width: 768px) {
  #charica .box1 .boxBody {
    display: block;
  }
  #charica .box1 .boxBody .colored {
    margin-top: 2.66667vw;
  }
}

#charica .box2 .boxFooter {
  color: #fff;
  text-align: left;
  font-size: 12px;
  padding: 10px;
}

#charica .box2 .boxFooter li {
  display: inline-block;
  margin-right: 2rem;
}

@media (max-width: 768px) {
  #charica .box2 .boxFooter {
    margin-top: 0.5em;
    font-size: 2.66667vw;
    padding: 0px;
  }
  #charica .box2 .boxFooter li {
    display: inline-block;
    margin-right: 0;
  }
}

#example {
  background: #fff;
  padding: 0px 0;
}

@media (max-width: 768px) {
  #example {
    padding: 0vw 0;
  }
}

#example .st-ContentHeader {
  /*
    margin-bottom: 60px;
    @media (max-width: $breakpoint) {
      margin-bottom: (50/750)*100vw;
    }*/
}

#example .st-ContentHeader img {
  width: 750px;
  height: auto;
}

@media (max-width: 768px) {
  #example .st-ContentHeader img {
    width: 100%;
  }
}

#example .st-ContentFooter {
  padding: 34px 0 0;
}

@media (max-width: 768px) {
  #example .st-ContentFooter {
    padding: 5.33333vw 0 0;
  }
}

#example .st-ContentFooter .button + .button {
  margin-top: 40px;
}

@media (max-width: 768px) {
  #example .st-ContentFooter .button + .button {
    margin-top: 5.33333vw;
  }
}

#example .st-ContentBody p {
  color: #de353c;
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 768px) {
  #example .st-ContentBody p {
    font-size: 4.8vw;
    line-height: 6.4vw;
  }
}

#example .st-ContentBody .box + .box {
  border-top: 1px solid #e5e5e5;
  margin-top: 60px;
}

@media (max-width: 768px) {
  #example .st-ContentBody .box + .box {
    margin-top: 8vw;
  }
}

#example .st-ContentBody .box .boxHeader {
  margin-top: 60px;
  margin-bottom: 30px;
}
#example .st-ContentBody .box .boxHeader p{
line-height: 1.5;
font-size: 24px
}

@media (max-width: 768px) {
  #example .st-ContentBody .box .boxHeader {
    margin-top: 8vw;
    margin-bottom: 2.66667vw;
  }
}

#example .st-ContentBody .box .boxBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#example .st-ContentBody .box .boxBody2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.yamawake{
width: 750px;
border-radius: 8px;
}

@media (max-width: 768px) {
.yamawake{
width: 100%;
border-radius: 8px;
}
}
@media (max-width: 768px) {
  #example .st-ContentBody .box .boxBody {
    display: block;
  }
}

#example .st-ContentBody .box .boxBody a {
  position: relative;
  overflow: hidden;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 750px;
}

#example .st-ContentBody .box .boxBody a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

@media (min-width: 768px) {
  #example .st-ContentBody .box .boxBody a:hover:after {
  }
  #example .st-ContentBody .box .boxBody a:hover img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  #example .st-ContentBody .box .boxBody a {
    width: 100%;
  }
}

#example .st-ContentBody .box .boxBody a:nth-child(3), #example .st-ContentBody .box .boxBody a:nth-child(4) {
  margin-top: 40px;
}

@media (max-width: 768px) {
  #example .st-ContentBody .box .boxBody a {
    margin-top: 2.66667vw !important;
  }
}

#example .st-ContentBody .box .boxBody a img {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  vertical-align: top;
  width: 100%;
  height: auto;
}

#chariloto {
  background: #f9f9f9 url(../img/st_bg_photo.jpg);
  background-size: cover;
  padding: 90px 0;
}

@media (max-width: 768px) {
  #chariloto {
    padding: 9.33333vw 0;
  }
}

#chariloto .st-ContentHeader img {
  width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  #chariloto .st-ContentHeader img {
    width: 35.6vw;
  }
}

#chariloto .st-ContentBody {
  margin: 30px 0 20px;
  font-size: 20px;
}

@media (max-width: 768px) {
  #chariloto .st-ContentBody {
    font-size: 3.2vw;
    line-height: 4.8vw;
    margin: 4vw 0;
  }
}

#chariloto li {
  font-size: 15px;
  line-height: 1;
  color: #de353c;
}

@media (max-width: 768px) {
  #chariloto li {
    font-size: 3.2vw;
    line-height: 4.8vw;
  }
}

#chariloto li + li {
  margin-top: 1em;
}

#chariloto li a {
  font-size: 10px;
  letter-spacing: 0.03em;
  color: #de353c;
}

@media (max-width: 768px) {
  #chariloto li a {
    font-size: 2.66667vw;
  }
}

#chariloto li span {
  display: inline-block;
}

#register {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(0, 0, 0, .8);
  text-align: center;
  padding: 10px 0;
  height: 100px;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

#register a.button {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media (max-width: 768px) {
  #register {
    padding: 1.6vw 0;
    height: 16vw;
  }
}

#register.show {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#popup {
  display: none;
  background: rgba(222, 53, 60, .9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  z-index: 100000;
}

#popup.show {
  display: block;
}

#popup #popupInner {
  display: table;
  height: 100%;
  width: 100%;
  padding: 30px;
}

@media (max-width: 768px) {
  #popup #popupInner {
    padding: 8vw;
  }
}

#popup #popupInner > div {
  display: table-cell;
  vertical-align: middle;
}

#popup #popupClose {
  cursor: pointer;
  outline: none;
  background: #fff;
  position: absolute;
  border: 1px solid #de353c;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
  border-radius: 40px;
}

@media (max-width: 768px) {
  #popup #popupClose {
    width: 10.66667vw;
    height: 10.66667vw;
    right: -5.33333vw;
    top: -5.33333vw;
    border-radius: 10.66667vw;
  }
}

#popup #popupClose span {
  position: relative;
}

#popup #popupClose span:after, #popup #popupClose span:before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: -1px;
  width: 2px;
  height: 16px;
  background: #de353c;
}

@media (max-width: 768px) {
  #popup #popupClose span:after, #popup #popupClose span:before {
    top: -2vw;
    left: -0.26667vw;
    width: 0.53333vw;
    height: 4vw;
  }
}

#popup #popupClose span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#popup #popupClose span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#popup #popupContent {
  position: relative;
  border-radius: 8px;
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 60px;
}

@media (max-width: 768px) {
  #popup #popupContent {
    padding: 8vw 5.33333vw 4vw;
  }
}

#popup #popupContent h4 {
  display: block;
  text-align: center;
  color: #de353c;
  margin: 0 auto;
  border: 1px solid #de353c;
  width: 300px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  margin-bottom: 40px;
  font-size: 16px;
}

@media (max-width: 768px) {
  #popup #popupContent h4 {
    font-size: 4vw;
    width: 68vw;
    height: 10.66667vw;
    line-height: 10.66667vw;
    border-radius: 10.66667vw;
    margin-bottom: 4vw;
  }
}

#popup #popupContent li {
  font-size: 14px;
  line-height: 20px;
}

#popup #popupContent li + li {
  margin-top: 0.5em;
}

@media (max-width: 768px) {
  #popup #popupContent li {
    font-size: 3.2vw;
    line-height: 4.8vw;
  }
}

#footer {
  color: #fff;
  padding: 60px 0 180px;
}

#footer a {
  color: #fff;
}

@media (max-width: 768px) {
  #footer {
    padding: 8vw 0 34.66667vw;
  }
}

@media (max-width: 768px) {
  #footer .st-FooterRow--Cell + .st-FooterRow--Cell {
    margin-top: 8vw;
  }
}

#footer .st-FooterRow--Cell + .st-FooterRow--Cell a {
  display: inline-block;
  text-decoration: none;
  font-size: 12px;
  line-height: 23px;
  width: 120px;
  margin-right: 20px;
}

#footer .st-FooterRow--Cell + .st-FooterRow--Cell a + a {
  margin-left: 20px;
}

#footer .st-FooterRow--Cell + .st-FooterRow--Cell a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  #footer .st-FooterRow--Cell + .st-FooterRow--Cell a {
    display: block;
    width: 32vw;
    font-size: 3.2vw;
    line-height: 2.5;
  }
  #footer .st-FooterRow--Cell + .st-FooterRow--Cell a + a {
    margin-left: 0px;
  }
}

#footer .st-FooterRow--Cell + .st-FooterRow--Cell a.ico-arrow {
  position: relative;
}

#footer .st-FooterRow--Cell + .st-FooterRow--Cell a.ico-arrow span:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
}

@media (max-width: 768px) {
  #footer .st-FooterRow--Cell + .st-FooterRow--Cell a.ico-arrow span:after {
    width: 1.06667vw;
    height: 1.06667vw;
    border-right: 0.53333vw solid #fff;
    border-bottom: 0.53333vw solid #fff;
    margin-top: -0.8vw;
  }
}

#footer .chariloto-logo,
#footer .mixiGroup-logo {
  display: inline-block;
}

#footer .chariloto-logo img,
#footer .mixiGroup-logo img {
  vertical-align: top;
  width: auto;
  height: 23px;
}

@media (max-width: 768px) {
  #footer .chariloto-logo img,
  #footer .mixiGroup-logo img {
    height: 4.93333vw;
  }
}

#footer .mixiGroup-logo {
  margin-left: 40px;
}

@media (max-width: 768px) {
  #footer .mixiGroup-logo {
    margin-left: 8vw;
  }
}

#footer .st-FooterRow__Bottom {
  margin-top: 40px;
}

@media (max-width: 768px) {
  #footer .st-FooterRow__Bottom {
    margin-top: 8vw;
  }
}

#footer .st-FooterRow__Bottom .copyright {
  line-height: 1;
  font-size: 12px;
}

@media (max-width: 768px) {
  #footer .st-FooterRow__Bottom .copyright {
    font-size: 2.66667vw;
  }
}

#footer .st-FooterRow__Bottom .copyright small {
  font-size: 100%;
}

@keyframes anime{
0%{transform:scale(.95); opacity:1}
90%{opacity:.1}to{transform:scale(1.2,1.5); opacity:0}
}


@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}

.shiny-btn {
    position: relative;
    display: block;
    width: 50%;
    height: 60px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #384878;
    overflow: hidden;
}

.shiny-btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
    
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.annotation {
  font-size: 12px;
	color:#414141;
}

.marker {
  background:linear-gradient(transparent 60%, rgba(265, 220, 153) 50%);
  display: inline;

  /* 背景の繰り返しを停止 */
  background-repeat: no-repeat;

  /* マーカーの横方向を0にして縮める */
  background-size: 0% 100%;

  /* マーカーが引かれる速度を指定 */
  transition:background-size 1.2s;
}

/* マーカーが引かれる際に付与するクラス */
.marker.on {
  /* 横方向を100%にして、マーカーを引く */
  background-size: 100% 100%;
}
.member {
  font-size: 15px;
  font-weight: 100;
  color:#7B7878
}
@media (max-width: 768px) {
.member {
  font-size: 11px;
  font-weight: 100;
  color: #7B7878;
}
}
.box-design15 {
  margin: 20px auto;
}

.box-design15-ttl {
  background-color: #de353c;
  color: #fff;
  padding: 0.5em 20px;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
.box-design15-txt {
  padding: 10px 20px;
  border: 2px solid #de353c;
  font-size: 15px;
}
.pop {
  padding: 0.5em 10px;
  color: #de353c;
  font-size:150%;
  font-weight:900;
  text-shadow: 
	1px 1px 1px #ffffff,
	-1px -1px 1px #ffffff,
	-1px 1px 1px #ffffff,
	1px -1px 1px #ffffff;
}
