@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap");
/*------------------------------
  animation
------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*------------------------------
  module
------------------------------*/
.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

.clearFix {
  zoom: 1;
}

.align-L {
  text-align: left !important;
}

.align-C {
  text-align: center !important;
}

.align-R {
  text-align: right !important;
}

.for-sp {
  display: none;
}
@media (max-width: 750px) {
  .for-sp {
    display: block;
  }
}

.for-pc {
  display: block;
}
@media (max-width: 750px) {
  .for-pc {
    display: none;
  }
}

.sp-inline {
  display: none !important;
}
@media (max-width: 750px) {
  .sp-inline {
    display: inline-block !important;
  }
}

.pc-inline {
  display: inline-block !important;
}
@media (max-width: 750px) {
  .pc-inline {
    display: none !important;
  }
}

/* -----------------------------
 commonのリセット分
------------------------------*/
#Container {
  width: 100%;
}

#Container .WrapTop {
  margin: 0 auto;
  width: 980px;
}

#Container .link a img, #Container a img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
#Container .link a:hover img, #Container a:hover img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
#Container .link a:active img, #Container a:active img, #Container .link a:focus img, #Container a:focus img {
  opacity: 1;
  filter: alpha(opacity=100);
}

@media only screen and (max-width: 750px) {
  #Container .WrapTop {
    width: 100%;
  }
}
body {
  min-width: 980px;
}
@media only screen and (max-width: 750px) {
  body {
    min-width: auto;
  }
}

/*------------------------------
loading
------------------------------*/
.loader_wrap {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100vh;
  background: #fff;
  opacity: 0;
}
.loader_wrap.is-active {
  -webkit-animation: 0s fadeIn 0.6s forwards;
          animation: 0s fadeIn 0.6s forwards;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 35px;
  height: 35px;
}
@media (max-width: 750px) {
  .loader,
  .loader:after {
    width: 30px;
    height: 30px;
  }
}

.loader {
  margin-top: -160px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 3px solid rgba(219, 221, 225, 0.4);
  border-right: 3px solid rgba(219, 221, 225, 0.4);
  border-bottom: 3px solid #999;
  border-left: 3px solid #999;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: loading 1.1s infinite linear;
  animation: loading 1.1s infinite linear;
}
@media (max-width: 750px) {
  .loader {
    border-width: 2px;
    margin-top: -85px;
  }
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* -----------------------------
  layout
------------------------------*/
#contentArea .inner {
  margin: 0 auto;
  width: 980px;
}
@media (max-width: 750px) {
  #contentArea .inner {
    width: 100%;
  }
}

@media (max-width: 750px) {
  #contentArea .spWrap {
    margin: 0 4vw;
  }
}

#contentArea p, #contentArea h1, #contentArea h2, #contentArea h3, #contentArea h4, #contentArea h5, #contentArea li, #contentArea a, #contentArea th, #contentArea td {
  color: #333;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0;
}
#contentArea .ff-reset {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
}
#contentArea em {
  font-style: normal;
}
#contentArea sup {
  font-size: 75%;
  vertical-align: top;
}
#contentArea sup.aste {
  font-size: 65%;
  line-height: 1;
  vertical-align: super;
}
#contentArea span.excla {
  font-size: 115%;
}
#contentArea a {
  text-decoration: none;
}
#contentArea .contentWrap {
  position: relative;
  opacity: 0;
}
#contentArea .contentWrap.contents__show {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
#contentArea #back_bg {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
}
@media screen and (min-width: 769px) {
  #contentArea #back_bg {
    display: none;
  }
}
#contentArea .fixed {
  overflow-y: hidden;
}
#contentArea .kerning {
  display: inline-block;
  margin-left: -0.5em;
}
#contentArea .bg1 {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/common/bg_wood.jpg") center 0/223px auto repeat;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea .bg1 {
    background-size: 22.533vw auto;
  }
}
#contentArea mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
}
/* -----------------------------
  numMenu
------------------------------*/
@media (max-width: 750px) {
  .numMenu {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #1a9746;
    display: block;
    z-index: 1000;
    width: 13.067vw;
    height: 13.067vw;
    position: fixed;
    top: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .numMenu.mShow {
    opacity: 1;
  }
  .numMenu .bar {
    margin: 0 auto;
    width: 5.867vw;
    height: 0.8vw;
    display: block;
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
    position: absolute;
    top: 3.867vw;
    left: 0;
    right: 0;
    background: #fff;
  }
  .numMenu .bar.middle {
    top: 6vw;
    opacity: 1;
  }
  .numMenu .bar.bottom {
    top: 8.133vw;
  }
  .numMenu.open .bar.middle {
    display: none;
  }
  .numMenu.open .bar.top {
    top: calc(50% - 0.4vw);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .numMenu.open .bar.bottom {
    top: calc(50% - 0.4vw);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/* -----------------------------
  pageNav
------------------------------*/
.navPosWrap {
  height: auto;
}

#pageNav {
  border-top: 4px solid #1a9746;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 750px) {
  #pageNav {
    border: none;
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    overflow: auto;
    height: 100vh;
  }
  #pageNav.open {
    display: block;
    -webkit-animation: fadeIn 0.3s forwards;
            animation: fadeIn 0.3s forwards;
  }
}
#pageNav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 980px;
  height: 110px;
  margin: auto;
}
@media (max-width: 750px) {
  #pageNav ul {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: auto;
    height: auto;
    margin: 0 10.667vw;
    padding-top: 26.133vw;
    opacity: 0;
    -webkit-animation: 0.3s fadeIn forwards;
            animation: 0.3s fadeIn forwards;
  }
}
@media (max-width: 750px) {
  #pageNav ul li:not(.bnr) {
    width: 100%;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0.4vw, #1a9746), color-stop(0.4vw, transparent));
    background-image: -webkit-linear-gradient(left, #1a9746 0.4vw, transparent 0.4vw);
    background-image: linear-gradient(to right, #1a9746 0.4vw, transparent 0.4vw);
    background-size: 1.2vw 0.4vw;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
#pageNav ul li:not(:first-child) {
  border-left: 1px solid #cdded3;
}
@media (max-width: 750px) {
  #pageNav ul li:not(:first-child) {
    border-left: none;
  }
}
#pageNav ul li:first-child a {
  padding-left: 0;
}
#pageNav ul li.bnr {
  border: none;
}
#pageNav ul li.coming a {
  color: #ababab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#pageNav ul li.coming a div::before {
  background-color: #ababab;
}
#pageNav ul li.coming a span {
  color: #ababab;
}
#pageNav ul li.bnr {
  -webkit-box-flex: 1;
  -webkit-flex: auto;
      -ms-flex: auto;
          flex: auto;
  text-align: right;
}
@media (max-width: 750px) {
  #pageNav ul li.bnr {
    text-align: center;
  }
}
#pageNav ul li.bnr a {
  padding: 0;
}
@media (max-width: 750px) {
  #pageNav ul li.bnr a {
    padding: 6.667vw 0 4vw;
  }
}
@media (max-width: 750px) {
  #pageNav ul li.bnr a img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  #pageNav ul li.bnr a[href]:hover img {
    opacity: 0.9;
  }
}
#pageNav ul li a {
  color: #333333;
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  padding: 0 18px 0 19px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 769px) {
  #pageNav ul li a[href]:hover {
    opacity: 0.75;
  }
}
@media (max-width: 750px) {
  #pageNav ul li a {
    font-size: 4vw;
    line-height: 1;
    width: 100%;
    padding: 5.333vw 0 5.6vw;
  }
}
#pageNav ul li a.current {
  color: #1a9746;
  pointer-events: none;
}
#pageNav ul li a div {
  position: relative;
  padding: 0 0 0 25px;
}
@media (max-width: 750px) {
  #pageNav ul li a div {
    padding-left: 8vw;
  }
}
#pageNav ul li a div::before, #pageNav ul li a div::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
@media (max-width: 750px) {
  #pageNav ul li a div::before, #pageNav ul li a div::after {
    bottom: inherit;
  }
}
#pageNav ul li a div::before {
  width: 18px;
  height: 18px;
  background: #1a9746;
}
@media (max-width: 750px) {
  #pageNav ul li a div::before {
    width: 4vw;
    height: 4vw;
  }
}
#pageNav ul li a div::after {
  left: 5px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 750px) {
  #pageNav ul li a div::after {
    width: 1.067vw;
    height: 1.067vw;
    bottom: inherit;
    top: 1.333vw;
    left: 1.067vw;
  }
}
#pageNav ul li a .sub {
  display: block;
  color: #1a9746;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 3px;
  margin-left: 3px;
}
@media (max-width: 750px) {
  #pageNav ul li a .sub {
    font-size: 3.2vw;
    margin-top: 2.133vw;
  }
}

#bnrSpace {
  padding: 100px 0 100px;
  text-align: center;
}
@media (max-width: 750px) {
  #bnrSpace {
    padding: 15.6vw 6.667vw 10.667vw;
    text-align: center;
  }
}
#bnrSpace .bnr_head {
  margin-bottom: 24px;
}
@media (max-width: 750px) {
  #bnrSpace .bnr_head {
    margin: 0 3.067vw 3.2vw;
  }
}
#bnrSpace a img {
  -webkit-filter: drop-shadow(6px 6px 8px rgba(0, 58, 20, 0.08));
          filter: drop-shadow(6px 6px 8px rgba(0, 58, 20, 0.08));
}

#pagetop {
  border-bottom: 2px solid #1a9746;
}
@media (max-width: 750px) {
  #pagetop {
    border-bottom: none;
    padding-bottom: 4vw;
  }
}
#pagetop p.pagetop {
  text-align: right;
}
#pagetop p.pagetop a {
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/common/pagetop.png) 0 0/100% auto no-repeat;
  display: inline-block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 104px;
  height: 26px;
}
@media (max-width: 750px) {
  #pagetop p.pagetop {
    text-align: center;
  }
  #pagetop p.pagetop a {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/common/pagetop_s.png) center 0/contain no-repeat;
    width: 30vw;
    height: 5.333vw;
  }
}

/* ================================================================================
  index
================================================================================ */
/* -----------------------------
  #contentArea.index
------------------------------*/
#contentArea.index .contentWrap {
  background: #ecf3ed;
  margin: 0 auto;
}
@media (max-width: 750px) {
  #contentArea.index .contentWrap {
    background-size: 20px;
  }
}
#contentArea.index .mainWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
#contentArea.index .mainWrap > div {
  pointer-events: none;
  width: 50%;
}
#contentArea.index .mainWrap > div img {
  width: 100%;
}
@media only screen and (max-width: 750px) {
  #contentArea.index .mainWrap {
    display: block;
  }
  #contentArea.index .mainWrap > div {
    width: 100%;
  }
}
#contentArea.index .mainWrap .swiper-slide-active img,
#contentArea.index .mainWrap .swiper-slide-duplicate-active img,
#contentArea.index .mainWrap .swiper-slide-prev img {
  -webkit-animation: zoomIn 6s linear 0s normal both;
          animation: zoomIn 6s linear 0s normal both;
}
#contentArea.index .mainWrap .swiper-slide {
  pointer-events: none;
}
#contentArea.index .mainVis {
  position: relative;
}
#contentArea.index .label {
  width: 15vw;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  #contentArea.index .label {
    width: 15%;
  }
}
@media (max-width: 750px) {
  #contentArea.index .label {
    width: 23.867vw;
    margin-right: 5.333vw;
  }
}
#contentArea.index .label img {
  width: 100%;
}
#contentArea.index .mainLogo {
  width: 13.403vw;
  position: absolute;
  top: 2.222vw;
  left: 2.083vw;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  #contentArea.index .mainLogo {
    width: 13.403%;
    top: 3.855%;
    left: 2.083%;
  }
}
@media (max-width: 750px) {
  #contentArea.index .mainLogo {
    width: 25.733vw;
    top: 4vw;
    left: 4vw;
  }
}
#contentArea.index .mainLogo img {
  width: 100%;
}
#contentArea.index .mainTitle {
  pointer-events: none;
  width: 42.222vw;
  margin: 0 auto 0;
  position: absolute;
  top: 15.278vw;
  left: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  #contentArea.index .mainTitle {
    width: 42.222%;
    top: 26.506%;
  }
}
@media (max-width: 750px) {
  #contentArea.index .mainTitle {
    width: 72.4vw;
    top: 35.733vw;
    padding-left: 1.067vw;
  }
}
#contentArea.index .mainTitle img {
  width: 100%;
}

/* -----------------------------
  index about
------------------------------*/
#contentArea.index #about {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/bg_obj01.png") calc(50% - 68px) -95px/1502px auto no-repeat, url("/brand/toshitsuzerogmen/chikara/assets/image/top/bg_obj02.png") calc(50% + 40px) bottom/1570px auto no-repeat;
  padding-top: 148px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 750px) {
  #contentArea.index #about {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/bg_obj01_s.png") 0 -20.667vw no-repeat, url("/brand/toshitsuzerogmen/chikara/assets/image/top/bg_obj02_s.png") left 0 bottom 14.667vw no-repeat;
    background-size: 100% auto;
    padding-top: 10.4vw;
  }
}
#contentArea.index #about::before {
  content: "";
  display: block;
  width: 194px;
  height: 288px;
  position: absolute;
  z-index: 1;
  top: 225px;
  left: -10px;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/parts_green01.png) center/100% auto no-repeat;
}
@media (max-width: 750px) {
  #contentArea.index #about::before {
    width: 25.867vw;
    height: 38.4vw;
    top: 6vw;
    left: -11.2vw;
  }
}
#contentArea.index #about::after {
  content: "";
  display: block;
  width: 194px;
  height: 288px;
  position: absolute;
  z-index: 1;
  top: 225px;
  right: -10px;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/parts_green02.png) center/100% auto no-repeat;
}
@media (max-width: 750px) {
  #contentArea.index #about::after {
    width: 25.867vw;
    height: 38.4vw;
    top: 6vw;
    right: -11.2vw;
  }
}
#contentArea.index #about > .inner > .title {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  #contentArea.index #about > .inner > .title {
    width: 87.067vw;
    margin: auto;
    margin-bottom: 5.333vw;
  }
}
#contentArea.index #about > .inner > .pkg {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  #contentArea.index #about > .inner > .pkg {
    width: 86.133vw;
    margin: auto;
    margin-bottom: 5.333vw;
  }
}
#contentArea.index #about > .inner > .text {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.index #about > .inner > .text {
    font-size: 4.267vw;
    line-height: 1.8;
  }
}

/* -----------------------------
  index points
------------------------------*/
#contentArea.index #points {
  position: relative;
  padding-bottom: 158px;
}
@media (max-width: 750px) {
  #contentArea.index #points {
    padding-bottom: 25.333vw;
  }
}
#contentArea.index #points .point {
  padding-top: 124px;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.index #points .point {
    padding-top: 38.667vw;
  }
  #contentArea.index #points .point:first-child {
    padding-top: 21.067vw;
  }
}
#contentArea.index #points .point .pic {
  position: absolute;
}
#contentArea.index #points .frame {
  text-align: center;
  width: 580px;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame {
    width: auto;
    margin: 0 6.667vw;
  }
}
#contentArea.index #points .frame::before {
  content: "";
  display: block;
  width: 158px;
  height: 158px;
  border-radius: 100vh;
  background-color: #f6f5f3;
  position: absolute;
  top: -71px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame::before {
    width: 28vw;
    height: 28vw;
    top: -11.733vw;
  }
}
#contentArea.index #points .frame .frameInner {
  background-color: #fff;
  border: solid 8px #f6f5f3;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner {
    border-width: 1.2vw;
  }
}
#contentArea.index #points .frame .frameInner::before {
  content: "";
  display: block;
  width: 142px;
  height: 142px;
  border-radius: 100vh;
  background-color: #fff;
  position: absolute;
  top: -71px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner::before {
    width: 25.6vw;
    height: 25.6vw;
    top: -11.733vw;
  }
}
#contentArea.index #points .frame .frameInner .cont {
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/frame_top.png) center 15px/535px auto no-repeat, url(/brand/toshitsuzerogmen/chikara/assets/image/top/frame_bottom.png) center bottom 15px/542px auto no-repeat;
  position: relative;
  padding: 98px 0 77px;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner .cont {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/frame_top_s.png) center 2.4vw no-repeat;
    background-size: 79.867vw auto;
    padding: 16.267vw 0 13.333vw;
  }
}
#contentArea.index #points .frame .frameInner .cont .number {
  width: 101px;
  position: absolute;
  top: -54px;
  left: 0;
  right: 0;
  margin: auto;
}
#contentArea.index #points .frame .frameInner .cont .number img {
  width: 100%;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner .cont .number {
    width: 18.267vw;
    top: -8.667vw;
  }
}
#contentArea.index #points .frame .frameInner .cont .title {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner .cont .title {
    margin: 0 auto 4vw;
  }
}
#contentArea.index #points .frame .frameInner .cont .desc {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}
@media (max-width: 750px) {
  #contentArea.index #points .frame .frameInner .cont .desc {
    font-size: 3.733vw;
    line-height: 1.8;
    margin-bottom: 5.067vw;
  }
}
#contentArea.index #points #point1 .frameInner::after {
  content: "";
  display: block;
  width: 122px;
  height: 160px;
  position: absolute;
  z-index: 2;
  top: 257px;
  left: -35px;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/parts_leaf01.png) center/122px auto no-repeat;
}
@media (max-width: 750px) {
  #contentArea.index #points #point1 .frameInner::after {
    width: 18.267vw;
    height: 23.867vw;
    top: 26.933vw;
    left: -2.667vw;
    background-size: 100% auto;
  }
}
@media (max-width: 750px) {
  #contentArea.index #points #point1 .title {
    width: 60.8vw;
  }
}
#contentArea.index #points #point1 .pic {
  top: 153px;
  right: 28px;
}
@media (max-width: 750px) {
  #contentArea.index #points #point1 .pic {
    width: 76.933vw;
    top: inherit;
    bottom: -23.6vw;
    left: 12.133vw;
    right: inherit;
  }
}
#contentArea.index #points #point2 .frame {
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 750px) {
  #contentArea.index #points #point2 .frame {
    margin-right: 6.667vw;
    margin-left: 6.667vw;
  }
}
@media (max-width: 750px) {
  #contentArea.index #points #point2 .frame .title {
    width: 72.8vw;
  }
}
#contentArea.index #points #point2 .frameInner::after {
  content: "";
  display: block;
  width: 122px;
  height: 160px;
  position: absolute;
  z-index: 2;
  top: 259px;
  right: -40px;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/parts_leaf02.png) center/122px auto no-repeat;
}
@media (max-width: 750px) {
  #contentArea.index #points #point2 .frameInner::after {
    width: 18.267vw;
    height: 23.867vw;
    top: -7.2vw;
    left: inherit;
    right: -3.733vw;
    background-size: 100% auto;
  }
}
#contentArea.index #points #point2 .pic {
  top: 183px;
  left: 12px;
}
@media (max-width: 750px) {
  #contentArea.index #points #point2 .pic {
    width: 81.867vw;
    top: inherit;
    bottom: -18vw;
    left: 9.867vw;
    right: inherit;
  }
}
@media (max-width: 750px) {
  #contentArea.index #points #point3 {
    padding-top: 33.333vw;
  }
}
#contentArea.index #points #point3 .frameInner::after {
  content: "";
  display: block;
  width: 122px;
  height: 160px;
  position: absolute;
  z-index: 2;
  top: 257px;
  left: -35px;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/top/parts_leaf01.png) center/122px auto no-repeat;
}
@media (max-width: 750px) {
  #contentArea.index #points #point3 .frameInner::after {
    width: 18.267vw;
    height: 23.867vw;
    top: -5.867vw;
    left: -2.667vw;
    background-size: 100% auto;
  }
}
@media (max-width: 750px) {
  #contentArea.index #points #point3 .title {
    width: 71.467vw;
  }
}
#contentArea.index #points #point3 .pic {
  top: 190px;
  right: 17px;
}
@media (max-width: 750px) {
  #contentArea.index #points #point3 .pic {
    width: 77.467vw;
    top: inherit;
    bottom: -20.8vw;
    left: 12.267vw;
    right: inherit;
  }
}

/* -----------------------------
  index history
------------------------------*/
#contentArea.index #history {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/history_bg.jpg") center bottom/100% 289px no-repeat;
  padding-bottom: 80px;
  margin-top: -56px;
}
@media (max-width: 750px) {
  #contentArea.index #history {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/history_bg_s.jpg") center bottom no-repeat, url("/brand/toshitsuzerogmen/chikara/assets/image/top/bg_obj03_s.png") right top no-repeat;
    background-size: 100% auto, 30vw auto;
    padding-top: 5.733vw;
    padding-bottom: 11.467vw;
    margin-top: 0;
  }
}
#contentArea.index #history .cont {
  overflow: hidden;
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/history_main.png") center 0/1267px auto no-repeat;
  height: 0;
  position: relative;
  margin-bottom: 30px;
  padding-top: 572px;
}
@media (max-width: 750px) {
  #contentArea.index #history .cont {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/history_main_s.png") center 0/100% auto no-repeat;
    height: 0;
    margin-bottom: 6.4vw;
    padding-top: 88.4vw;
  }
}

/* -----------------------------
  index creater
------------------------------*/
#contentArea.index #creater {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/creater_bg.png?2") right calc(50% - 180px) top 120px no-repeat;
  min-height: 872px;
}
@media (max-width: 750px) {
  #contentArea.index #creater {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/top/creater_bg_s.png?2") center 63.333vw no-repeat;
    background-size: 88.533vw auto;
    min-height: auto;
  }
}
#contentArea.index #creater .title {
  padding-top: 188px;
  margin-bottom: 42px;
}
@media (max-width: 750px) {
  #contentArea.index #creater .title {
    width: 73.867vw;
    margin: 0 auto 121.333vw;
    padding-top: 13.067vw;
  }
}
#contentArea.index #creater .text {
  line-height: 1.8;
  font-size: 26px;
  font-weight: bold;
  margin-left: 5px;
  margin-bottom: 44px;
}
@media (max-width: 750px) {
  #contentArea.index #creater .text {
    font-size: 4vw;
    letter-spacing: 0.1em;
    margin-left: 0;
    margin-bottom: 6.667vw;
    text-align: center;
  }
}
#contentArea.index #creater .text.indent {
  text-indent: -0.5em;
}
@media (max-width: 750px) {
  #contentArea.index #creater .text.indent {
    text-indent: 0;
  }
}
@media screen and (min-width: 769px) {
  #contentArea.index #creater .btnStyle {
    margin-left: 5px;
  }
}

/* -----------------------------
  index #bnrSpace
------------------------------*/
@media screen and (min-width: 769px) {
  #contentArea.index #bnrSpace {
    padding-top: 64px;
  }
}

/* -----------------------------
  btnStyle
------------------------------*/
#contentArea .btnStyle {
  width: 303px;
  height: 54px;
  border: #1a9746 2px solid;
  background-color: #1a9746;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1a9746;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  padding-right: 38px;
  text-decoration: none;
  margin: auto;
  position: relative;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 750px) {
  #contentArea .btnStyle {
    margin: 0 auto;
    width: 73.333vw;
    height: 13.867vw;
    font-size: 4vw;
    border-right-width: 11.733vw;
    padding-left: 0;
    padding-right: 0;
  }
}
#contentArea .btnStyle > div {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#contentArea .btnStyle span {
  color: #1a9746;
  padding-left: 18px;
}
@media (max-width: 750px) {
  #contentArea .btnStyle span {
    padding-left: 2.133vw;
  }
}
#contentArea .btnStyle::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 8px;
  height: 13px;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea .btnStyle::after {
    width: 2.4vw;
    height: 3.733vw;
    right: -7.2vw;
  }
  #contentArea .btnStyle::after svg {
    width: 2.4vw;
    height: 3.733vw;
  }
}
#contentArea .btnStyle::after path {
  fill: #fff;
}
@media screen and (min-width: 769px) {
  #contentArea .btnStyle[href]:hover > div {
    background-color: #1a9746;
  }
  #contentArea .btnStyle[href]:hover > div span {
    color: #fff;
  }
}
#contentArea .btnStyle.blue {
  border-color: #0084d4;
  background-color: #0084d4;
}
#contentArea .btnStyle.blue > div {
  background-color: #fff;
}
#contentArea .btnStyle.blue span {
  color: #0084d4;
}
@media screen and (min-width: 769px) {
  #contentArea .btnStyle.blue[href]:hover > div {
    background-color: #0084d4;
  }
  #contentArea .btnStyle.blue[href]:hover > div span {
    color: #fff;
  }
}
#contentArea .btnStyle.orange {
  border-color: #ff6c00;
  background-color: #ff6c00;
}
#contentArea .btnStyle.orange > div {
  background-color: #fff;
}
#contentArea .btnStyle.orange span {
  color: #ff6c00;
}
@media screen and (min-width: 769px) {
  #contentArea .btnStyle.orange[href]:hover > div {
    background-color: #ff6c00;
  }
  #contentArea .btnStyle.orange[href]:hover > div span {
    color: #fff;
  }
}
#contentArea .btnStyle.coming {
  border-color: #ababab;
  background-color: #ababab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#contentArea .btnStyle.coming span {
  color: #ababab;
}
#contentArea .btnStyle.coming span {
  letter-spacing: 0.05em;
  padding-left: 0;
  padding-bottom: 0.1em;
}

/* ================================================================================
  collab
================================================================================ */
#contentArea.collab .contentWrap {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/common/bg_wood.jpg") center 0/223px auto repeat;
}
@media (max-width: 750px) {
  #contentArea.collab .contentWrap {
    background-size: 22.533vw auto;
  }
}
#contentArea.collab #mv .inner {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/creater_bg.png") right 100px/618px auto no-repeat;
  min-height: 773px;
  padding-top: 175px;
}
@media (max-width: 750px) {
  #contentArea.collab #mv .inner {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/creater_bg_s.png") center 54vw no-repeat;
    background-size: 91.867vw auto;
    min-height: auto;
    padding-top: 8vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #mv .title {
    text-align: center;
  }
}
#contentArea.collab #mv .title img {
  margin-bottom: 120px;
}
@media (max-width: 750px) {
  #contentArea.collab #mv .title img {
    text-align: center;
    width: 85.333vw;
    margin: 0 auto 105.333vw;
  }
}
#contentArea.collab #mv .intro {
  text-align: center;
  margin-bottom: 114px;
}
@media (max-width: 750px) {
  #contentArea.collab #mv .intro {
    width: 88.133vw;
    margin: 0 auto 16.933vw;
  }
}
#contentArea.collab #movie {
  position: relative;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab/bg_wave.jpg) no-repeat, url(/brand/toshitsuzerogmen/chikara/assets/image/collab/bg_wave00.png) no-repeat;
  background-size: 100% auto;
  background-position: center 33.889vw, center 30.486vw;
}
@media screen and (max-width: 1440px) {
  #contentArea.collab #movie {
    background-size: 1440px auto;
    background-position: center 488px, center 439px;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #movie {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab/bg_wave_s.jpg) no-repeat, url(/brand/toshitsuzerogmen/chikara/assets/image/collab/bg_wave00_s.png) no-repeat;
    background-size: 100% auto;
    background-position: center 60vw, center 49.067vw;
  }
}
#contentArea.collab #movie .bg {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/bg_ripple.png") calc(50% - 46px) 1365px/1394px auto no-repeat;
  padding-bottom: 120px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .bg {
    background: none;
    padding-bottom: 18.667vw;
  }
}
#contentArea.collab #movie .inner {
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .inner > .title {
    width: 87.067vw;
    margin: 0 auto 0;
  }
}
#contentArea.collab #movie .textTitle {
  font-size: 24px;
  text-align: center;
  margin: 33px 0 43px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .textTitle {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin: 6.133vw 6.667vw 6.267vw;
    text-align: left;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #movie .movieWrap {
    margin: 0 6.667vw 10.667vw;
  }
}
#contentArea.collab #movie .thumb {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .thumb {
    height: 0;
    width: auto;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #movie .thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#contentArea.collab #movie .inner .section {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .inner .section {
    margin: 0 7.733vw 14.667vw;
  }
}
#contentArea.collab #movie .inner .section:last-child {
  margin-bottom: 8px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .inner .section:last-child {
    margin-bottom: 1.067vw;
  }
}
#contentArea.collab #movie .inner .section.section01 .box .title mark {
  padding-right: 0;
}
#contentArea.collab #movie .inner .section.section02 .box {
  border-color: #e60012;
}
#contentArea.collab #movie .inner .section.section02 .box .title mark {
  padding-right: 0;
}
#contentArea.collab #movie .inner .section.section03 .box {
  border-color: #2d36a0;
}
#contentArea.collab #movie .inner .section.section03 .box .title mark {
  padding-right: 0;
}
#contentArea.collab #movie .head {
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .head {
    width: 78.933vw;
    margin-left: auto;
    margin-right: auto;
  }
}
#contentArea.collab #movie .box {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #ffae00;
  -webkit-box-shadow: 0 0 0 8px #fff;
          box-shadow: 0 0 0 8px #fff;
  margin: -48px 8px 0;
  padding: 64px 72px 58px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .box {
    border-radius: 5px;
    border-width: 1px;
    -webkit-box-shadow: 0 0 0 1.067vw #fff;
            box-shadow: 0 0 0 1.067vw #fff;
    margin: -5.867vw 0 0;
    padding: 10.667vw 0 6.667vw;
  }
}
#contentArea.collab #movie .box .title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .box .title {
    font-size: 6.4vw;
    margin-bottom: 5.333vw;
    padding: 0 5.333vw;
  }
}
#contentArea.collab #movie .box .title .kerning {
  display: inline-block;
  margin-left: -0.5em;
}
#contentArea.collab #movie .box .title mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .box .title mark {
    font-size: 6.4vw;
    line-height: 1.4;
  }
}
#contentArea.collab #movie .box .image {
  text-align: center;
  padding: 0 5.333vw;
}
#contentArea.collab #movie .box .text {
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab #movie .box .text {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-top: 2.667vw;
  }
}
#contentArea.collab #recipe {
  position: relative;
  padding: 118px 0 0;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe {
    padding: 13.333vw 0 0;
  }
}
#contentArea.collab #recipe .title {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe .title {
    width: 87.867vw;
    margin: 0 auto 8vw;
  }
}
#contentArea.collab #recipe ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe ul {
    display: block;
    margin: 0 13.333vw 5.333vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #recipe ul li {
    text-align: center;
    margin-bottom: 18.667vw;
  }
  #contentArea.collab #recipe ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #contentArea.collab #recipe ul li .image img {
    width: 100%;
  }
}
#contentArea.collab #recipe ul li .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin: 23px 0;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe ul li .name {
    font-size: 5.867vw;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin: 4.133vw 0 3.867vw;
  }
}
#contentArea.collab #recipe .btnStyle2 {
  width: 100%;
  height: 54px;
  border-radius: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0084d4;
  border: 2px solid #0084d4;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin: auto;
  position: relative;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe .btnStyle2 {
    margin: 0 auto;
    width: 73.333vw;
    height: 13.867vw;
    font-size: 4.8vw;
    padding-left: 0;
  }
}
#contentArea.collab #recipe .btnStyle2::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 8px;
  height: 13px;
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe .btnStyle2::before {
    width: 2.4vw;
    height: 3.733vw;
    left: 6.667vw;
  }
  #contentArea.collab #recipe .btnStyle2::before svg {
    width: 2.4vw;
    height: 3.733vw;
  }
}
#contentArea.collab #recipe .btnStyle2::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 17px;
  height: 13px;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.collab #recipe .btnStyle2::after {
    width: 4.4vw;
    height: 3.333vw;
    right: 6vw;
  }
}
#contentArea.collab #recipe .btnStyle2:hover {
  border: 2px solid #0084d4;
  background-color: #fff;
  color: #0084d4;
}
#contentArea.collab #recipe .btnStyle2:hover::before, #contentArea.collab #recipe .btnStyle2:hover::after {
  background-color: #0084d4;
}
#contentArea.collab #profile {
  margin-bottom: 100px;
  padding: 120px 0 0;
}
@media (max-width: 750px) {
  #contentArea.collab #profile {
    margin: 0 6.667vw 13.333vw;
    padding: 13.333vw 0 0;
  }
}
#contentArea.collab #profile .border {
  border: 4px solid #0084d4;
  border-radius: 10px 10px 0 0;
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/profile.jpg") bottom 0 right 44px/322px auto no-repeat #fff;
  display: block;
  padding: 100px 0 80px;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .border {
    border-width: 2px;
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/profile_s.jpg") top 2.4vw right 2.133vw no-repeat #fff;
    background-size: 36.667vw auto;
    padding: 20vw 0 6vw;
  }
}
#contentArea.collab #profile .border::before {
  content: "";
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab/profile_ribon.png") 0 0/100% auto no-repeat;
  width: 145px;
  height: 91px;
  display: block;
  position: absolute;
  top: -21px;
  left: 36px;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .border::before {
    width: 27.067vw;
    height: 16.933vw;
    top: calc(-3.333vw - 2px);
    left: 6.133vw;
  }
}
#contentArea.collab #profile .cont {
  width: 495px;
  margin-left: 80px;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .cont {
    width: auto;
    margin: 0 4.8vw;
  }
}
#contentArea.collab #profile .name {
  color: #0084d4;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .name {
    font-size: 5.2vw;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
#contentArea.collab #profile .name em {
  font-size: 44px;
  font-style: normal;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .name em {
    font-size: 9.733vw;
    letter-spacing: -0.1em;
    margin-left: -0.2em;
    margin-right: 0.2em;
  }
}
#contentArea.collab #profile .name mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
  padding: 0 0.3em;
  color: #0084d4;
  font-size: 24px;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .name mark {
    padding: 0 0.1em 0 0.2em;
    font-size: 5.2vw;
    line-height: 1.3;
  }
}
#contentArea.collab #profile .desc {
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
}
@media (max-width: 750px) {
  #contentArea.collab #profile .desc {
    font-size: 4.267vw;
    line-height: 1.8;
  }
}
#contentArea.collab #profile .desc .indent {
  text-indent: -0.5em;
  display: inline-block;
}
#contentArea.collab .bnrStyle {
  background-color: #0084d4;
  border: 4px solid #0084d4;
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 20px 0 21px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 750px) {
  #contentArea.collab .bnrStyle {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.03em;
    padding: 2.667vw 0 3.2vw;
    margin-top: -0.267vw;
  }
}
#contentArea.collab .bnrStyle::after {
  content: "";
  display: inline-block;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 17px;
  height: 13px;
  margin-left: 0.4em;
}
@media (max-width: 750px) {
  #contentArea.collab .bnrStyle::after {
    width: 4.4vw;
    height: 3.333vw;
  }
}
#contentArea.collab .bnrStyle:hover {
  background-color: #fff;
  color: #0084d4;
}
#contentArea.collab .bnrStyle:hover::before, #contentArea.collab .bnrStyle:hover::after {
  background-color: #0084d4;
}

/* ================================================================================
  collab.collab02
================================================================================ */
#contentArea.collab.collab02 .contentWrap {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/common/bg_wood.jpg") center 0/223px auto repeat;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 .contentWrap {
    background-size: 22.533vw auto;
  }
}
#contentArea.collab.collab02 #mv .inner {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab02/creater_bg.png") right 78px/653px auto no-repeat;
  min-height: auto;
  padding-top: 175px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #mv .inner {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab02/creater_bg_s.png") center 62.667vw no-repeat;
    background-size: 92.267vw auto;
    min-height: auto;
    padding-top: 8vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #mv .title {
    text-align: center;
  }
}
#contentArea.collab.collab02 #mv .title img {
  margin-bottom: 115px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #mv .title img {
    text-align: center;
    width: 85.6vw;
    margin: 0 auto 102.667vw;
  }
}
#contentArea.collab.collab02 #mv .intro {
  text-align: center;
  margin-bottom: 114px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #mv .intro {
    width: 88.133vw;
    margin: 0 auto 16.933vw;
  }
}
#contentArea.collab.collab02 #movie {
  position: relative;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_marble.jpg) no-repeat;
  background-size: 100% auto;
  background-position: center 460px;
}
@media screen and (max-width: 1440px) {
  #contentArea.collab.collab02 #movie {
    background-size: 1440px auto;
    background-position: center 460px;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_marble_s.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center 60vw;
  }
}
#contentArea.collab.collab02 #movie .bg {
  background: none;
  padding-bottom: 120px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .bg {
    background: none;
    padding-bottom: 21.333vw;
  }
}
#contentArea.collab.collab02 #movie .inner {
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner > .title {
    width: 87.067vw;
    margin: 0 auto 0;
  }
}
#contentArea.collab.collab02 #movie .textTitle {
  font-size: 24px;
  text-align: center;
  margin: 33px 0 43px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .textTitle {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
    margin: 6.133vw 6.667vw 6.267vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .movieWrap {
    margin: 0 6.667vw 16vw;
  }
}
#contentArea.collab.collab02 #movie .thumb {
  margin-bottom: 85px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .thumb {
    height: 0;
    width: auto;
    padding-top: 56.25%;
    position: relative;
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
#contentArea.collab.collab02 #movie .inner #points {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100% + 314px);
  margin: 0 -157px;
  padding: 0 0 80px;
}
@media screen and (max-width: 1294px) {
  #contentArea.collab.collab02 #movie .inner #points {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 980px) {
  #contentArea.collab.collab02 #movie .inner #points {
    width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner #points {
    border-radius: 5px;
    width: auto;
    margin: auto 4vw;
    padding: 0 0 10.667vw;
  }
}
#contentArea.collab.collab02 #movie .inner #points .points_title {
  text-align: center;
  padding: 100px 0 80px;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner #points .points_title {
    width: 86.667vw;
    margin: auto;
    padding: 10.667vw 0 10vw;
  }
}
#contentArea.collab.collab02 #movie .inner .section {
  margin-bottom: 75px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner .section {
    margin: 0 2.667vw 12vw;
  }
}
#contentArea.collab.collab02 #movie .inner .section:last-child {
  margin-bottom: 8px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner .section:last-child {
    margin-bottom: 1.067vw;
  }
}
#contentArea.collab.collab02 #movie .inner .section.section01 .box .title mark {
  padding-right: 0;
}
#contentArea.collab.collab02 #movie .inner .section.section02 .box {
  border-color: #ff6c00;
}
#contentArea.collab.collab02 #movie .inner .section.section02 .box .title mark {
  padding-right: 0;
}
#contentArea.collab.collab02 #movie .inner .section.section03 .box {
  border-color: #ff6c00;
}
#contentArea.collab.collab02 #movie .inner .section.section03 .box .title mark {
  padding-right: 0;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner .section.section01 .head img {
    width: 32.933vw;
    top: -2vw;
  }
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner .section.section02 .head img {
    width: 38.133vw;
    top: -2vw;
  }
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .inner .section.section03 .head img {
    width: 34.533vw;
    top: -3.067vw;
  }
}
#contentArea.collab.collab02 #movie .head {
  width: 980px;
  margin: auto;
  background: #ff6c00;
  text-align: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .head {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
#contentArea.collab.collab02 #movie .head img {
  position: relative;
  top: -16px;
}
#contentArea.collab.collab02 #movie .box {
  width: 980px;
  margin: auto;
  background-color: #fff;
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border: 2px solid #ff6c00;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 42px 72px 50px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .box {
    width: 100%;
    border-radius: 5px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    border-width: 1px;
    margin: 0vw auto 0;
    padding: 7.333vw 0 6.667vw;
  }
}
#contentArea.collab.collab02 #movie .box .title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .box .title {
    font-size: 6.4vw;
    margin-bottom: 5.333vw;
    padding: 0 0vw;
  }
}
#contentArea.collab.collab02 #movie .box .title .kerning {
  display: inline-block;
  margin-left: -0.5em;
}
#contentArea.collab.collab02 #movie .box .title mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 0.3em;
  padding-right: 0.3em;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .box .title mark {
    font-size: 6.4vw;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
#contentArea.collab.collab02 #movie .box .image {
  text-align: center;
  padding: 0;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #movie .box .image {
    padding: 0 5.333vw;
  }
}
#contentArea.collab.collab02 #movie .box .text {
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-top: 35px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #movie .box .text {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-top: 2.667vw;
    padding: 0 5.333vw;
    text-align: left;
  }
}
#contentArea.collab.collab02 #menu {
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_menu.png) center -75px no-repeat #fff9e5;
  position: relative;
  padding: 100px 0 118px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_menu_s.png) center 0/100% auto no-repeat #fff9e5;
    padding: 4.933vw 0 16vw;
  }
}
#contentArea.collab.collab02 #menu .title {
  margin-bottom: 56px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu .title {
    width: 87.867vw;
    margin: 0 auto 10.667vw;
  }
}
#contentArea.collab.collab02 #menu .lead {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu .lead {
    width: 60.8vw;
    margin: 0 auto 10.667vw;
  }
}
#contentArea.collab.collab02 #menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -10px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu ul {
    display: block;
    margin: 0 6.667vw 0vw 4vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu ul li {
    text-align: center;
    margin-bottom: 8vw;
  }
  #contentArea.collab.collab02 #menu ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu ul li .image img {
    width: 100%;
  }
}
#contentArea.collab.collab02 #menu ul li .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin: 23px 0;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #menu ul li .name {
    font-size: 5.867vw;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin: 4.133vw 0 3.867vw;
  }
}
#contentArea.collab.collab02 #cooking {
  position: relative;
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_circle.png) no-repeat, url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_marble.jpg) no-repeat;
  background-size: 1822px auto, 100% auto;
  background-position: calc(50% - 70px) -268px, center 0px;
  padding: 120px 0;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #cooking {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/bg_cooking_s.jpg) no-repeat;
    background-size: 100% auto;
    background-position: center 0;
    padding: 13.333vw 4vw 16vw;
  }
}
#contentArea.collab.collab02 #cooking .inner {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 95px 0 85px;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner {
    border-radius: 5px;
    padding: 10vw 0 9.333vw;
  }
}
#contentArea.collab.collab02 #cooking .inner > .title {
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner > .title {
    width: 81.6vw;
    margin: 0 auto 10vw;
  }
}
#contentArea.collab.collab02 #cooking .inner .section {
  margin-bottom: 45px;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner .section {
    margin-bottom: 9.333vw;
  }
}
#contentArea.collab.collab02 #cooking .inner .section:last-child {
  margin-bottom: 0;
}
#contentArea.collab.collab02 #cooking .inner .section .title {
  background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/cooking_balloon.png) center bottom no-repeat;
  font-size: 36px !important;
  margin-bottom: 30px;
  padding-bottom: 34px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner .section .title {
    background: url(/brand/toshitsuzerogmen/chikara/assets/image/collab02/cooking_balloon_s.png) center bottom no-repeat;
    background-size: 72.267vw auto;
    font-size: 5.733vw !important;
    margin-bottom: 4vw;
    padding: 0 0vw 5.6vw;
  }
}
#contentArea.collab.collab02 #cooking .inner .section .title .kerning {
  display: inline-block;
  margin-left: -0.5em;
}
#contentArea.collab.collab02 #cooking .inner .section .title mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-left: 0.1em;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner .section .title mark {
    font-size: 5.733vw;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
#contentArea.collab.collab02 #cooking .inner .section .image {
  text-align: center;
  padding: 0;
}
@media only screen and (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner .section .image {
    padding: 0 2.667vw;
  }
}
#contentArea.collab.collab02 #cooking .inner .section .text {
  font-size: 18px;
  line-height: 2.4;
  letter-spacing: 0.06em;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #cooking .inner .section .text {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-top: 2.667vw;
    padding: 0 2.667vw;
    text-align: center;
  }
}
#contentArea.collab.collab02 #recipe {
  position: relative;
  padding: 118px 0 0;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe {
    padding: 13.333vw 0 0;
  }
}
#contentArea.collab.collab02 #recipe .title {
  margin-bottom: 60px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe .title {
    width: 87.867vw;
    margin: 0 auto 8vw;
  }
}
#contentArea.collab.collab02 #recipe ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe ul {
    display: block;
    margin: 0 13.333vw 5.333vw;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe ul li {
    text-align: center;
    margin-bottom: 18.667vw;
  }
  #contentArea.collab.collab02 #recipe ul li:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe ul li .image img {
    width: 100%;
  }
}
#contentArea.collab.collab02 #recipe ul li .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
  margin: 23px 0;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe ul li .name {
    font-size: 5.867vw;
    line-height: 1.45;
    letter-spacing: 0.05em;
    margin: 4.133vw 0 3.867vw;
  }
}
#contentArea.collab.collab02 #recipe .btnStyle2 {
  width: 100%;
  height: 54px;
  border-radius: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #0084d4;
  border: 2px solid #0084d4;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin: auto;
  position: relative;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe .btnStyle2 {
    margin: 0 auto;
    width: 73.333vw;
    height: 13.867vw;
    font-size: 4.8vw;
    padding-left: 0;
  }
}
#contentArea.collab.collab02 #recipe .btnStyle2::before {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 75 125"><path fill="%23FFF" d="M75.6,62.6L64.1,73.9l0,0l-52.6,51.4L0,114.1l52.6-51.4L0,11.2L11.5,0l52.6,51.4l0,0L75.6,62.6z" /></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 8px;
  height: 13px;
  position: absolute;
  left: 31px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe .btnStyle2::before {
    width: 2.4vw;
    height: 3.733vw;
    left: 6.667vw;
  }
  #contentArea.collab.collab02 #recipe .btnStyle2::before svg {
    width: 2.4vw;
    height: 3.733vw;
  }
}
#contentArea.collab.collab02 #recipe .btnStyle2::after {
  content: "";
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 17px;
  height: 13px;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #recipe .btnStyle2::after {
    width: 4.4vw;
    height: 3.333vw;
    right: 6vw;
  }
}
@media screen and (min-width: 769px) {
  #contentArea.collab.collab02 #recipe .btnStyle2:hover {
    border: 2px solid #0084d4;
    background-color: #fff;
    color: #0084d4;
  }
  #contentArea.collab.collab02 #recipe .btnStyle2:hover::before, #contentArea.collab.collab02 #recipe .btnStyle2:hover::after {
    background-color: #0084d4;
  }
}
#contentArea.collab.collab02 #profile {
  margin-bottom: 100px;
  padding: 120px 0 0;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile {
    margin: 0 6.667vw 13.333vw;
    padding: 13.333vw 0 0;
  }
}
#contentArea.collab.collab02 #profile .border {
  border: 4px solid #ff6c00;
  border-radius: 10px 10px 0 0;
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab02/profile.jpg") bottom 0 right 44px/266px auto no-repeat #fff;
  display: block;
  padding: 100px 0 80px;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .border {
    border-width: 2px;
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab02/profile_s.jpg") top 4.933vw right 2.133vw no-repeat #fff;
    background-size: 35.467vw auto;
    padding: 18.667vw 0 6vw;
  }
}
#contentArea.collab.collab02 #profile .border::before {
  content: "";
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/collab02/profile_ribon.png") 0 0/100% auto no-repeat;
  width: 145px;
  height: 91px;
  display: block;
  position: absolute;
  top: -21px;
  left: 36px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .border::before {
    width: 27.067vw;
    height: 16.933vw;
    top: calc(-3.333vw - 2px);
    left: 6.133vw;
  }
}
#contentArea.collab.collab02 #profile .cont {
  width: 495px;
  margin-left: 80px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .cont {
    width: auto;
    margin: 0 4.8vw;
  }
}
#contentArea.collab.collab02 #profile .name {
  color: #ff6c00;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .name {
    font-size: 5.2vw;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }
}
#contentArea.collab.collab02 #profile .name em {
  font-size: 44px;
  font-style: normal;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .name em {
    font-size: 8.8vw;
    letter-spacing: initial;
    margin-left: 0;
    margin-right: 0.2em;
  }
}
#contentArea.collab.collab02 #profile .name mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(0%, #fdff40));
  background: -webkit-linear-gradient(transparent 75%, #fdff40 0%);
  background: linear-gradient(transparent 75%, #fdff40 0%);
  padding: 0 0.3em;
  color: #ff6c00;
  font-size: 24px;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .name mark {
    padding: 0 0.1em 0 0.2em;
    font-size: 5.2vw;
    line-height: 1.3;
  }
}
#contentArea.collab.collab02 #profile .desc {
  font-size: 16px;
  line-height: 2.2;
  text-align: justify;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 #profile .desc {
    font-size: 4.267vw;
    line-height: 1.8;
  }
}
#contentArea.collab.collab02 #profile .desc .indent {
  text-indent: -0.5em;
  display: inline-block;
}
#contentArea.collab.collab02 .bnrStyle {
  background-color: #ff6c00;
  border: 4px solid #ff6c00;
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  padding: 20px 0 21px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 .bnrStyle {
    font-size: 4.267vw;
    line-height: 1.8;
    letter-spacing: 0.03em;
    padding: 2.667vw 0 3.2vw;
    margin-top: -0.267vw;
  }
}
#contentArea.collab.collab02 .bnrStyle::after {
  content: "";
  display: inline-block;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 168 131"><path fill="%23FFF" d="M168.8,94H37.4V0h131.4V94z M47.4,84h111.4V10H47.4V84z" /><polygon fill="%23FFF" points="130.4,131.4 0,131.4 0,37.4 10,37.4 10,121.4 130.4,121.4 "/></svg>');
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #fff;
  width: 17px;
  height: 13px;
  margin-left: 0.4em;
}
@media (max-width: 750px) {
  #contentArea.collab.collab02 .bnrStyle::after {
    width: 4.4vw;
    height: 3.333vw;
  }
}
@media screen and (min-width: 769px) {
  #contentArea.collab.collab02 .bnrStyle:hover {
    background-color: #fff;
    color: #ff6c00;
  }
  #contentArea.collab.collab02 .bnrStyle:hover::before, #contentArea.collab.collab02 .bnrStyle:hover::after {
    background-color: #ff6c00;
  }
}

/* ================================================================================
  history
================================================================================ */
#contentArea.history .contentWrap {
  position: relative;
}
#contentArea.history .mainVis {
  text-align: center;
}
#contentArea.history .mainVis .mainTitle {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/history/main.png") center 0/1440px auto no-repeat;
  height: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#contentArea.history .mainVis .mainTitle img {
  margin-top: 108px;
}
@media (max-width: 750px) {
  #contentArea.history .mainVis .mainTitle {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/history/main_s.png") center 0/100% auto no-repeat;
    height: 42.667vw;
    text-align: left;
  }
  #contentArea.history .mainVis .mainTitle img {
    width: 71.6vw;
    margin-top: 7.333vw;
    margin-left: 3.2vw;
  }
}
#contentArea.history .bgWrap {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/history/bg_parts.png") calc(50% + 20px) -58px/1713px auto no-repeat #ecf3ed;
}
@media (max-width: 750px) {
  #contentArea.history .bgWrap {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/history/bg_parts_s.png") 0 0/100% auto no-repeat #ecf3ed;
  }
}
#contentArea.history #intro {
  padding: 61px 0 0;
  text-align: center;
}
@media (max-width: 750px) {
  #contentArea.history #intro {
    padding-top: 6.133vw;
  }
}
#contentArea.history #intro .title {
  margin-bottom: 40px;
}
@media (max-width: 750px) {
  #contentArea.history #intro .title {
    width: 94.933vw;
    margin: 0 auto 9.333vw;
  }
}
#contentArea.history #intro .text {
  margin-bottom: 55px;
}
@media (max-width: 750px) {
  #contentArea.history #intro .text {
    width: 90.533vw;
    margin: 0 auto 9.733vw;
  }
}
#contentArea.history #story {
  padding-bottom: 20px;
}
@media (max-width: 750px) {
  #contentArea.history #story {
    padding-bottom: 0.133vw;
  }
}
#contentArea.history #story .head {
  position: relative;
  top: 25px;
  text-align: center;
  padding-top: 30px;

}
@media (max-width: 750px) {
  #contentArea.history #story .head {
    width: 96.267vw;
    margin: auto;
    top: 4.533vw;
    padding-top: 4vw;
  }
}
#contentArea.history #story .box {
  background: url("/brand/toshitsuzerogmen/chikara/assets/image/common/box_bg.jpg") center top/100% auto no-repeat #fff;
  border-radius: 10px;
  margin: 0 0 40px;
  padding: 6px;
  position: relative;
}
@media (max-width: 750px) {
  #contentArea.history #story .box {
    background: url("/brand/toshitsuzerogmen/chikara/assets/image/common/box_bg_s.jpg") center top/100% auto no-repeat #fff;
    border-radius: 8px;
    margin: 0 0 40px;
    padding: 1.067vw;
    margin: 0 6.667vw 13.333vw;
  }
}
#contentArea.history #story .box .boxInner {
  border-radius: 5px;
  border: 1px solid #1a9746;
  padding-bottom: 46px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner {
    border-radius: 5px;
    padding-bottom: 0;
  }
}
#contentArea.history #story .box .boxInner .title {
  height: 114px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
#contentArea.history #story .box .boxInner .title::before {
  content: "・";
  margin-right: 0.5em;
}
#contentArea.history #story .box .boxInner .title::after {
  content: "・";
  margin-left: 0.5em;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner .title {
    height: 21.333vw;
  }
  #contentArea.history #story .box .boxInner .title span {
    font-size: 5.867vw;
    line-height: 1.3;
    display: inline-block;
    text-align: center;
  }
}
#contentArea.history #story .box .boxInner .text {
  font-size: 17px;
  line-height: 2.4;
  padding: 46px 70px 0;
  text-align: justify;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner .text {
    font-size: 4.267vw;
    line-height: 1.8;
    padding: 6vw 5.333vw 0;
  }
}
#contentArea.history #story .box .boxInner.picLeft .text {
  padding-left: 334px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner.picLeft .text {
    padding-left: 5.333vw;
  }
}
#contentArea.history #story .box .boxInner.picRight .text {
  padding-right: 324px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner.picRight .text {
    padding-right: 5.333vw;
  }
}
#contentArea.history #story .box .boxInner .image {
  margin-top: 8px;
  margin-left: 70px;
  margin-bottom: 12px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box .boxInner .image {
    margin: 7.333vw 5.333vw 6.533vw;
  }
}
#contentArea.history #story .box .boxInner .pic {
  position: absolute;
  bottom: 0;
}
@media (max-width: 750px) {
  #contentArea.history #story .box.box2 {
    margin-bottom: 15.6vw;
  }
}
@media (max-width: 750px) {
  #contentArea.history #story .box.box2 .boxInner {
    padding-bottom: 45.867vw;
  }
}
#contentArea.history #story .box.box2 .pic {
  bottom: -40px;
  right: 46px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box.box2 .pic {
    width: 59.6vw;
    bottom: -15.6vw;
  }
}
@media (max-width: 750px) {
  #contentArea.history #story .box.box3 .boxInner {
    padding-bottom: 45.867vw;
  }
}
#contentArea.history #story .box.box3 .pic {
  bottom: -60px;
  left: 36px;
}
@media (max-width: 750px) {
  #contentArea.history #story .box.box3 .pic {
    width: 59.333vw;
    bottom: -13.467vw;
  }
}