.si-wrap {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.3s;
}

.si-wrap:before, .si-wrap:after {
  display: table;
  content: '';
}

.si-wrap:after {
  clear: both;
}

@media screen and (max-width: 765px) {
  .si-wrap {
    cursor: pointer;
  }
}

/** 
 * tab
 */
.si-tab {
  height: 36px;
  overflow: hidden;
}

.si-tab-list {
  height: 56px;
  padding: 0 0 20px 20px !important;
  margin: 0 !important;
  font-size: 0 !important;
  white-space: nowrap;
  overflow: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.si-tab-list > li {
  display: inline-block;
  padding: 0 !important;
  margin: 0 0 0 -20px !important;
  font-size: 16px;
  vertical-align: bottom;
  position: relative;
}

.si-tab-list > li:nth-child(1) {
  z-index: 20;
}

.si-tab-list > li:nth-child(2) {
  z-index: 19;
}

.si-tab-list > li:nth-child(3) {
  z-index: 18;
}

.si-tab-list > li:nth-child(4) {
  z-index: 17;
}

.si-tab-list > li:nth-child(5) {
  z-index: 16;
}

.si-tab-list > li:nth-child(6) {
  z-index: 15;
}

.si-tab-list > li:nth-child(7) {
  z-index: 14;
}

.si-tab-list > li:nth-child(8) {
  z-index: 13;
}

.si-tab-list > li:nth-child(9) {
  z-index: 12;
}

.si-tab-list > li:nth-child(10) {
  z-index: 11;
}

.si-tab-list > li:nth-child(11) {
  z-index: 10;
}

.si-tab-list > li:nth-child(12) {
  z-index: 9;
}


.si-tab-list > li:nth-child(13) {
  z-index: 8;
}


.si-tab-list > li:nth-child(14) {
  z-index: 7;
}


.si-tab-list > li:nth-child(15) {
  z-index: 6;
}


.si-tab-list > li:nth-child(16) {
  z-index: 5;
}


.si-tab-list > li:nth-child(17) {
  z-index: 4;
}


.si-tab-list > li:nth-child(18) {
  z-index: 3;
}


.si-tab-list > li:nth-child(19) {
  z-index: 2;
}


.si-tab-list > li:nth-child(20) {
  z-index: 1;
}

.si-tab-list > li.is-selected {
  z-index: 20 !important;
}

.si-tab-list > li::before {
  display: none;
}

.si-tab-list > li > a {
  display: inline-block !important;
  min-width: 100px;
  height: 28px;
  margin: 0 29px 0 27px !important;
  position: relative;
  color: inherit !important;
  vertical-align: bottom;
  text-align: center;
  -webkit-transition: none !important;
  transition: none !important;
}

.si-tab-list > li > a::before, .si-tab-list > li > a::after {
  content: '';
  height: 28px;
  position: absolute;
  bottom: 0;
  background-repeat: no-repeat;
}

.si-tab-list > li > a::before {
  width: 27px;
  left: -27px;
  background-position: 0 0;
}

.si-tab-list > li > a::after {
  width: 29px;
  right: -29px;
  background-position: 100% 0;
}

.si-tab-list > li:nth-child(odd) > a {
  background: #d4848e;
}

.si-tab-list > li:nth-child(odd) > a::before, .si-tab-list > li:nth-child(odd) > a::after {
  background-image: url(../img/bg_tab_odd.png);
}

.si-tab-list > li:nth-child(even) > a {
  background: #d4848e;
}

.si-tab-list > li:nth-child(even) > a::before, .si-tab-list > li:nth-child(even) > a::after {
  background-image: url(../img/bg_tab_even.png);
}

.si-tab-list > li > a > span {
  position: relative;
  z-index: 1;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.si-tab-list > li > a:hover > span {
  opacity: 0.7;
}

.si-tab-list > li > a.is-selected {
  height: 36px;
  padding-top: 8px !important;
  margin: 0 33px 0 31px !important;
  background: #222;
  color: #fff !important;
  font-size: 20px !important;
}

.si-tab-list > li > a.is-selected::before, .si-tab-list > li > a.is-selected::after {
  display: block !important;
  content: '';
  height: 36px;
  position: absolute;
  z-index: 0;
  margin: auto;
  background-image: url(../img/bg_tab_selected.png);
}

.si-tab-list > li > a.is-selected::before {
  width: 31px;
  left: -31px !important;
}

.si-tab-list > li > a.is-selected::after {
  width: 33px;
  right: -33px !important;
}

.si-tab-list > li > a.is-selected > span {
  top: -8px;
}

@media screen and (max-width: 765px) {
  .si-tab {
    width: 100%;
    height: 34px;
    text-align: left;
    overflow: hidden;
    -webkit-transform: translate3d(0, 1px, 0);
            transform: translate3d(0, 1px, 0);
  }
  .si-tab-list {
    height: 54px;
    padding-left: 0 !important;
  }
  .si-tab-list > li {
    margin: 0 0 0 -18px !important;
    font-size: 14px;
  }
  .si-tab-list > li:first-child {
    margin-left: 0 !important;
  }
  .si-tab-list > li > a {
    min-width: 60px;
  }
  .si-tab-list > li > a > span {
    position: relative;
    z-index: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .si-tab-list > li > a:hover > span {
    opacity: 1;
  }
  .si-tab-list > li > a.is-selected {
    height: 34px !important;
    margin-right: 29px !important;
    margin-left: 25px !important;
    font-size: 16px !important;
    padding-top: 5px !important;
    box-sizing: border-box;
  }
  .si-tab-list > li > a.is-selected::before, .si-tab-list > li > a.is-selected::after {
    height: 34px;
    background-image: url(../img/sp/bg_tab_selected.png) !important;
    background-size: 99px 34px !important;
  }
  .si-tab-list > li > a.is-selected::before {
    width: 25px;
    left: -25px !important;
  }
  .si-tab-list > li > a.is-selected::after {
    width: 29px;
    right: -29px !important;
  }
  .si-tab-list > li > a.is-selected > span {
    top: -4px;
  }
  .si-tab-list > li:nth-child(odd) > a::before {
    background-image: url(../img/sp/bg_tab_odd.png);
    background-size: 83px 28px;
  }
  .si-tab-list > li:nth-child(even) > a::before {
    background-image: url(../img/sp/bg_tab_even.png);
    background-size: 83px 28px;
  }
}

/** 
 * panel
 */
.si-panel {
  max-height: 150px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
  -webkit-transition: max-height 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: max-height 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: max-height 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: max-height 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-panel.is-animated {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.si-panel::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.si-panel.is-hovered {
  max-height: 800px !important;
}

.si-panel:not(:last-child) {
  margin-bottom: 30px !important;
}

.si-panel-image {
  display: block;
  position: relative;
  -webkit-transition: opacity 0.2s linear !important;
  transition: opacity 0.2s linear !important;
}

.si-panel-image:hover {
  opacity: 0.7;
  opacity: 1;
}

.si-panel-image .pc {
  display: block;
}

.si-panel-image .sp {
  display: none;
}

.si-panel-image::before {
  content: '';
}

.si-panel-image::after {
  display: block !important;
  content: '' !important;
  width: 4px;
  height: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.si-panel.is-hovered .si-panel-image::after {
  opacity: 0;
}

.si-panel-title {
  margin: 0 !important;
  padding: 5px 45px 0 10px !important;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: #ffffff;
}

.si-panel-title::before {
  content: '';
  width: 27px;
  height: 27px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url(../img/icon_link.png) 0 0 no-repeat;
}

.si-balloon {
  width: 32px;
  height: 32px;
  background: url(../img/balloon.png) 0 0 no-repeat;
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  -webkit-transition: opacity 0.2s linear, bottom 0s linear;
  transition: opacity 0.2s linear, bottom 0s linear;
}

.si-panel.is-hovered .si-balloon {
  opacity: 0;
  bottom: -50px;
  -webkit-transition: opacity 0.2s linear, bottom 0s linear 0.4s;
  transition: opacity 0.2s linear, bottom 0s linear 0.4s;
}

.si-balloon-inner {
  width: 18px;
  height: 4px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.si-balloon-dot {
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #222;
  position: absolute;
  top: 0;
}

.si-balloon-dot--1 {
  left: 0;
  -webkit-animation: dot-1 1s ease-out 0s infinite;
          animation: dot-1 1s ease-out 0s infinite;
}

.si-balloon-dot--2 {
  left: 7px;
  -webkit-animation: dot-2 1s ease-out 0s infinite;
          animation: dot-2 1s ease-out 0s infinite;
}

.si-balloon-dot--3 {
  left: 14px;
  -webkit-animation: dot-3 1s ease-out 0s infinite;
          animation: dot-3 1s ease-out 0s infinite;
}

@-webkit-keyframes dot-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  17% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes dot-1 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  17% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  33% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes dot-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  29% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  45% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes dot-2 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  29% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  45% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes dot-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  41% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  57% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

@keyframes dot-3 {
  0% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  41% {
    -webkit-transform: translate3d(0, -4px, 0) scale(1);
            transform: translate3d(0, -4px, 0) scale(1);
    opacity: 0.5;
  }
  57% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
}

.si-panel-content {
  padding: 15px 10px !important;
  background: rgba(0,0,0,0.6) !important;
}

.si-panel-comments {
  margin: 0 0 10px -10px !important;
  overflow: hidden;
}

.si-panel-comments > li {
  width: 50% !important;
  margin: 0 !important;
  padding: 0 0 0 10px !important;
  float: left;
}

.si-panel-comments > li::before {
  display: none;
}

.si-panel-comment {
  min-height: 130px;
  padding: 10px 15px;
  border-radius: 24px;
  position: relative;
  -webkit-transform-origin: 80% 50%;
          transform-origin: 80% 50%;
  opacity: 0;
  -webkit-transform: scale(0.4) translate3d(0, 40px, 0);
          transform: scale(0.4) translate3d(0, 40px, 0);
  -webkit-transition: opacity 0.2s linear, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-panel.is-hovered .si-panel-comment {
  opacity: 1;
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
}

.si-panel-comment::before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 0;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.si-panel-comment--green {
  background: #fff;
}

.si-panel.is-hovered .si-panel-comment--green {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.si-panel-comment--green::before {
  background-image: url(../img/bg_comment_green.png);
}

.si-panel-comment--pink {
  background: #fff;
}

.si-panel.is-hovered .si-panel-comment--pink {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.si-panel-comment--pink::before {
  background-image: url(../img/bg_comment_pink.png);
}

.si-panel-comment p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
  font-weight: 700;
  color: #555 !important;
  line-height: 1.3 !important;
  /*letter-spacing: -0.1em;*/
}

.si-panel-sns {
  margin: 0 !important;
  padding: 0 10px !important;
  text-align: right;
  font-size: 0 !important;
  position: relative;
  z-index: 1;
}

.si-panel-sns > li {
  display: inline-block;
  vertical-align: top;
  padding: 0 !important;
  margin: 0 0 0 15px !important;
}

.si-panel-sns > li.si-panel-sns-line {
  display: none !important;
}

.si-panel-sns > li.si-panel-sns-close {
  display: none;
}

.si-panel-sns > li::before {
  display: none;
}

.si-panel-sns-button {
  display: block !important;
  width: 32px;
  height: 32px;
  background-position: 0 0;
  background-repeat: no-repeat;
  -webkit-transition: opacity 0.2s linear !important;
  transition: opacity 0.2s linear !important;
}

.si-panel-sns-button:hover {
  opacity: 0.7;
}

.si-panel-sns-button--facebook {
  background-image: url(../img/button_facebook.png);
}

.si-panel-sns-button--twitter {
  background-image: url(../img/button_twitter.png);
}

.si-panel-sns-button--hatena {
  background-image: url(../img/button_hatena.png);
}

@media screen and (max-width: 765px) {
  .si-panel {
    max-height: 330px;
    cursor: pointer;
  }
  .si-panel::before {
    border-width: 0 0 40px 40px;
  }
  .si-panel.is-hovered {
    max-height: 900px !important;
    max-height: 1900px !important;
  }
  .si-panel:not(:last-child) {
    margin-bottom: 30px !important;
  }
  .si-panel-cover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: transparent;
  }
  .si-panel-image {
    display: block;
    position: relative;
  }
  .si-panel-image:hover {
    opacity: 1;
  }
  .si-panel-image .pc {
    display: none;
  }
  .si-panel-image .sp {
    display: block;
  }
  .si-panel-image::after {
    display: none !important;
  }
  .si-panel-title {
    padding: 15px 60px 15px 15px !important;
    font-size: 15px;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .si-panel.is-hovered .si-panel-title {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .si-panel-title::before {
    width: 32px;
    height: 32px;
    right: 15px;
    background-image: url(../img/sp/icon_link.png);
    background-size: cover;
  }
  .si-balloon {
    width: 43px;
    height: 43px;
    background-image: url(../img/balloon.png);
    background-size: cover;
    right: 23px;
    bottom: 23px;
  }
  .si-balloon-inner {
    width: 23px;
    height: 6px;
  }
  .si-balloon-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
  .si-balloon-dot--2 {
    left: 9px;
  }
  .si-balloon-dot--3 {
    left: 18px;
  }
  .si-panel-comments {
    margin: 0 0 15px 0 !important;
  }
  .si-panel-comments > li {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none;
  }
  .si-panel-comments > li:not(:last-child) {
    margin-bottom: 15px !important;
  }
  .si-panel-comment {
    min-height: 0;
  }
  .si-panel-comment--green {
    background: #fff;
  }
  .si-panel-comment--green::before {
    background-image: url(../img/sp/bg_comment_green.png);
    background-size: cover;
  }
  .si-panel-comment--pink {
    background: #fff;
    -webkit-transform-origin: 20% 50%;
            transform-origin: 20% 50%;
  }
  .si-panel-comment--pink::before {
    right: auto;
    left: 0;
    background-image: url(../img/sp/bg_comment_pink.png);
    background-size: cover;
  }
  .si-panel-comment p {
    position: relative;
    z-index: 1;
  }
  .si-panel-sns > li {
    margin: 0 0 0 12px !important;
  }
  .si-panel-sns > li.si-panel-sns-line {
    display: block;
  }
  .si-panel-sns > li.si-panel-sns-close {
    display: inline-block !important;
  }
  .si-panel-sns-button {
    width: 43px;
    height: 43px;
    background-size: cover;
  }
  .si-panel-sns-button:hover {
    opacity: 1;
  }
  .si-panel-sns-button--facebook {
    background-image: url(../img/sp/button_facebook.png);
  }
  .si-panel-sns-button--twitter {
    background-image: url(../img/sp/button_twitter.png);
  }
  .si-panel-sns-button--hatena {
    background-image: url(../img/sp/button_hatena.png);
  }
  .si-panel-sns-button--line {
    background-image: url(../img/sp/button_line.png);
  }
  .si-panel-sns-button--close {
    width: 30px;
    background: url(../img/sp/button_close.png) 50% 50% no-repeat !important;
    background-size: 22px 22px !important;
  }
}

/** 
 * links
 */
.si-links {
  margin: -40px 0 0 -27px !important;
  overflow: hidden;
}

.si-links > li {
  width: 50%;
  padding: 40px 0 0 27px !important;
  margin: 0 !important;
  float: left;
  opacity: 0;
  -webkit-transform: translate3d(0, 60px, 0);
          transform: translate3d(0, 60px, 0);
  -webkit-transition: opacity 0.2s linear, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-links > li:nth-child(even) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.si-links > li.is-animated {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.si-links > li::before {
  display: none;
  content: '';
}

@media screen and (max-width: 765px) {
  .si-links {
    margin: 0 !important;
  }
  .si-links > li {
    width: auto;
    padding: 0 !important;
    float: none;
  }
  .si-links > li:nth-child(even) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .si-links > li:not(:last-child) {
    margin-bottom: 20px !important;
  }
  .si-links > li.is-empty {
    display: none !important;
  }
}

/** 
 * link
 */
.si-link {
  padding: 60.88% 0 0;
  position: relative;
  overflow: hidden;
}

.si-link > a {
  display: block !important;
  position: static !important;
  text-align: center;
}

.si-link > a::after {
  display: none !important;
  content: '' !important;
}

.si-link-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.si-link-content {
  background: rgba(94, 152, 28, 0.95);
  background: rgba(213, 127, 142, 0.95);
  padding: 30px 80px 30px 30px !important;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 0;
  text-align: left;
}

.si-link.is-animated .si-link-content {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-link.is-hovered .si-link-content {
  -webkit-transform: translate3d(0, 0, 0) !important;
          transform: translate3d(0, 0, 0) !important;
}

.si-link-layer {
  display: none !important;
}

.si-link-title {
  margin: 0 !important;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}

.si-link-title a {
  color: inherit !important;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.si-link-title a:hover {
  opacity: 0.8;
}

.si-link-title a::after {
  display: none !important;
  content: '' !important;
}

.si-link-sns {
  margin: 0 !important;
  position: absolute;
  bottom: 30px;
  left: 30px;
  font-size: 0 !important;
}

.si-link-sns > li {
  display: inline-block;
  padding: 0 !important;
  margin: 0 15px 0 0 !important;
  vertical-align: top;
}

.si-link-sns > li.si-link-sns-line {
  display: none !important;
}

.si-link-sns > li::before {
  display: none;
  content: '';
}

.si-link-link {
  display: block !important;
  width: 39px;
  height: 39px;
  position: absolute !important;
  right: 30px;
  bottom: 30px;
  background: url(../img/icon_link_white.png) 0 0 no-repeat;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.si-link-link:hover {
  opacity: 0.8;
}

@media screen and (max-width: 765px) {
  .si-link {
    padding-top: 0;
  }
  .si-link-image {
    width: auto;
    max-width: 100%;
    height: auto;
    position: static;
    vertical-align: top;
  }
  .si-link-content {
    background: #5e981c;
    padding: 15px 20px 75px !important;
    width: auto;
    height: auto;
    position: static;
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
  }
  .si-link-layer {
    display: block !important;
    width: 100%;
    height: 100%;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .si-link-title {
    font-size: 15px;
    font-style: italic;
  }
  .si-link-title a:hover {
    opacity: 1;
  }
  .si-link-sns {
    bottom: 15px;
    left: 20px;
    z-index: 1;
  }
  .si-link-sns > li {
    margin: 0 15px 0 0 !important;
  }
  .si-link-sns > li.si-link-sns-line {
    display: inline-block !important;
  }
  .si-link-link {
    width: 37px;
    height: 37px;
    right: 20px;
    bottom: 15px;
    background: url(../img/sp/icon_link_white.png) 0 0 no-repeat;
    background-size: 37px 37px;
  }
  .si-link-link:hover {
    opacity: 1;
  }
}

.si-triangle--prev, .si-triangle--next {
  display: block;
  position: fixed;
  top: 50%;
}

.is-hidden.si-triangle--prev, .is-hidden.si-triangle--next {
  top: -100%;
  -webkit-transition: top 0s linear 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear 0.2s, opacity 0.2s linear, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear 0.2s, opacity 0.2s linear, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-triangle--prev div, .si-triangle--next div {
  width: 30px;
  height: 37px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s linear, transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: opacity 0.2s linear, transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: scale(0);
          transform: scale(0);
}

.si-triangle--prev:hover div, .si-triangle--next:hover div {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transform: scale(1.2) !important;
          transform: scale(1.2) !important;
}

.is-hidden.si-triangle--prev, .is-hidden.si-triangle--next {
  -webkit-transition: top 0s linear, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear, opacity 0.2s linear, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: top 0s linear, opacity 0.2s linear, transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.is-hidden.si-triangle--prev div, .is-hidden.si-triangle--next div {
  opacity: 0;
}

.is-visible.si-triangle--prev div, .is-visible.si-triangle--next div {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.si-triangle--prev {
  left: 64px;
}

.si-triangle--prev div {
  background-image: url(../img/button_triangle_prev.png);
}

.si-triangle--next {
  right: 64px;
}

.si-triangle--next div {
  background-image: url(../img/button_triangle_next.png);
}

@media screen and (max-width: 765px) {
  .si-triangle--prev div, .si-triangle--next div {
    width: 14px;
    height: 18px;
  }
  .si-triangle--prev:hover div, .si-triangle--next:hover div {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .si-triangle--prev {
    left: 5px;
  }
  .si-triangle--prev div {
    background-image: url(../img/sp/button_triangle_prev.png);
    background-size: cover;
  }
  .si-triangle--next {
    right: 5px;
  }
  .si-triangle--next div {
    background-image: url(../img/sp/button_triangle_next.png);
    background-size: cover;
  }
}

.si-fixed-tab {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000000000;
  background: #5e981c;
  padding: 10px 0 0;
  border-bottom: 5px solid;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1);
    background-image: url("../img/dot.png");

}

.is-tab-shown .si-fixed-tab {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 765px) {
  .si-fixed-tab {
    display: block;
  }
}

/** 
 * list
 */
.si-list {
  max-height: 10px;
  overflow: hidden;
  width: 880px;
  padding: 0 !important;
  margin: 0 !important;
  float: left;
  opacity: 0;
  -webkit-transform-origin: 50% 80px;
          transform-origin: 50% 80px;
  -webkit-transform: scale(0.9) translate3d(0, 0, 0);
          transform: scale(0.9) translate3d(0, 0, 0);
  -webkit-transition: max-height 0s linear 0.6s, opacity 0.2s linear 0.2s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: max-height 0s linear 0.6s, opacity 0.2s linear 0.2s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: max-height 0s linear 0.6s, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear 0.2s;
  transition: max-height 0s linear 0.6s, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.2s linear 0.2s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.si-list.is-visible {
  max-height: 200000px;
  opacity: 1;
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
  -webkit-transition: max-height 0s linear, opacity 0.6s linear 0.3s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: max-height 0s linear, opacity 0.6s linear 0.3s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
  transition: max-height 0s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, opacity 0.6s linear 0.3s;
  transition: max-height 0s linear, transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s, opacity 0.6s linear 0.3s, -webkit-transform 0.6s cubic-bezier(0.19, 1, 0.22, 1) 0.6s;
}

@media screen and (max-width: 765px) {
  .si-list {
    width: 100vw;
  }
}

/** 
 * content
 */
.si-content-header {
  padding: 15px 0 0 !important;
  background: #fff;
  background-image: url("../img/dot.png");
}

.si-content-header--list {
  padding: 15px 0 !important;
  background: #5e981c;
    background-image: url("../img/dot.png");
}

.si-content-header-clear {
  margin: 0 0 20px !important;
  overflow: hidden;
}

.si-content-header-clear--list {
  margin: 0 !important;
  overflow: hidden;
}

.si-content-heading {
  width: 464px;
  height: 19px;
  margin: 12px 0 0 !important;
  text-indent: -9999px;
  background: url(../img/heading_content.png) 0 0 no-repeat;
  border-width: 0 !important;
  padding: 0 !important;
  float: left;
}

.si-content-button {
  width: 126px;
  padding: 8px 15px !important;
  border: 4px solid !important;
  font-size: 18px !important;
  font-weight: 700;
  line-height: 1 !important;
  color: inherit !important;
  float: right;
  position: relative;
}

.si-content-button::before {
  content: '';
  width: 13px;
  height: 14px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  background: url(../img/icon_arrow_button.png) 0 0 no-repeat;
}

.si-content-button::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/bg_button.png) 0 0 repeat;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.si-content-button:hover::after {
  opacity: 1;
}

.si-content-body {
  padding: 75px 0 !important;
}

.si-content-container {
  width: 880px;
  margin: auto;
  overflow: hidden;
}

@media screen and (max-width: 765px) {
  .si-content-header {
    padding: 0 !important;
    border-bottom: 5px solid;
  }
  .si-content-header--list {
    padding: 8px !important;
  }
  .si-content-header-clear {
    padding: 8px 8px 0 !important;
    margin: 0 0 15px !important;
    overflow: hidden;
  }
  .si-content-heading {
    width: 184px;
    height: 33px;
    margin: 2px 0 0 !important;
    background: url(../img/sp/heading_content.png) 0 0 no-repeat;
    background-size: 184px 33px;
  }
  .si-content-button {
    width: auto;
    padding: 8px 25px 8px 10px !important;
    font-size: 15px !important;
  }
  .si-content-button::before {
    content: '';
    width: 11px;
    height: 13px;
    background: url(../img/sp/icon_arrow_button.png) 0 0 no-repeat;
    background-size: cover;
  }
  .si-content-button::after {
    display: none !important;
  }
  .si-content-body {
    padding: 0 !important;
  }
  .si-content-container {
    width: auto;
  }
}

/** 
 * header
 */
.si-header {
  height: 480px;
  background: #222 url(../img/bg_header.jpg) 50% 50% no-repeat;
}

.si-heading {
  display: none;
}

@media screen and (max-width: 765px) {
  .si-header {
    padding-top: 60.9375%;
    height: auto;
    background: #222 url(../img/sp/bg_header.jpg) 50% 50% no-repeat;
    background-size: cover;
  }
}

/** 
 * container
 */
.si-container {
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 765px) {
  .si-container {
    width: auto;
  }
}

.si-main {
  background: #222;
  color: #222;
}

/** 
 *
 * override default styling
 *
 */
.soft-double-top {
  padding-top: 0 !important;
  background-color: transparent !important;
}

.soft-double-top > .container {
  width: 100% !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.wp-text ul li {
  text-indent: 0 !important;
}

.weekly-back-to, .weekly-back-to-list {
  display: none;
}

@media screen and (max-width: 765px) {
  .weekly-back-to, .weekly-back-to-list {
    display: block;
    padding: 11px 12px 10px;
    background: #262626;
    position: relative;
    z-index: 3;
  }
  .weekly-back-to a, .weekly-back-to-list a {
    display: inline-block;
    padding-left: 15px;
    color: #fff !important;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    position: relative;
  }
  .weekly-back-to a:before, .weekly-back-to-list a:before {
    display: block;
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: url(../img/sp/icon_arrow.png) 0 0 no-repeat;
    background-size: 6px 6px;
  }
}



/*.si-content-body*/
.si-content-body{
  position: relative;
  overflow: hidden;

}
.si_fixarea{
  pointer-events: none;
   width:100%;
  background-size:cover;
background-position: center center;
opacity: 0;
max-height:100%;
}
.si_fixarea:before{
  pointer-events: none;
  color: rgba(0,0,0,0);
  content:".";
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
display: block;
background-color: rgba(0,0,0,0.6);
}
.si_fixarea[fp="tf"]{
  position: absolute;
  top:0;

}
.si_fixarea[fp="wf"]{
position: fixed;
top: 0;
}
.si_fixarea[fp="bf"]{
position: absolute;
bottom:0;
}
.si_fixarea.fixon{
opacity: 1;

-webkit-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000); 
   -moz-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000); 
     -o-transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000); 
        transition: all 500ms cubic-bezier(0.190, 1.000, 0.220, 1.000); /* easeOutExpo */

}


