@charset "utf-8";
/* CSS Document **/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03rem;
  line-height: 2.2;
}
/*@media all and (-ms-high-contrast:none) {
  * {
    font-family: 'メイリオ', 'Meiryo', sans-serif;
  }
}*/
html {
  -webkit-text-size-adjust: 100%; /* iPhoneでランドスケープにした時に文字サイズ自動変更禁止 */
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic; /* IEで画像をリサイズした時にギザギザになるのを防止 */
}
.guard img{
  pointer-events: none; /* PCの右クリック禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none; /* SPの長押し禁止 */
}
::selection {
  background: #AC8A47;
}
::-moz-selection {
  background: #AC8A47;
}
.clearfix {
  content: "";
  display: block;
  clear: both;
}
.mincho {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
}
.gothic {
  font-family: 'Noto Sans JP', sans-serif;
}
.text {
  font-size: 16px;
}
.textBox {
  text-align: justify;
}
.textBox + .textBox {
  margin-top: 20px;
}
.red {
  color: #cf0f0f !important;
}
.lightRed {
  color: #ff2727 !important;
}
.black {
  color: #111 !important;
}
.white {
  color: #fff !important;
}
.gold {
  color: #ae9349 !important;
}
.bold {
  font-weight: 700;
}
.text.min {
  font-size: 14px;
}
.text.big {
  font-size: 20px;
}
p.text + p.text {
  margin-top: 20px;
}
.subText {
  font-size: 14px;
  line-height: 2.0;
}
span.large {
  font-size: 140% !important;
}
span.small {
  font-size: 70% !important;
}
.taL {
  text-align: left;
}
.taR {
  text-align: right;
}
.taC {
  text-align: center;
}
.shadow {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9);
}
#prPoster hr {
  border-top: 1px solid #9E7E29;
  margin: 0;
}
.notClick{
  pointer-events: none;
}
a.link:active, a.link:hover, a.link:visited {
  color: #333;
}
a.link.white:active, a.link.white:hover, a.link.white:visited {
  color: #efefef;
}
@media screen and (min-width: 768px) {
  .spHidden {
    display: block !important;
  }
  .pcHidden {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .spHidden {
    display: none !important;
  }
  .pcHidden {
    display: block !important;
  }
}
/*inner
*****************************************************/
.inner {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1048px;
  }
  .inner.min {
    max-width: 748px;
  }
  .inner.big {
    max-width: 1248px;
  }
}
@media (max-width:767px) {
  .inner {
    padding: 0 30px;
  }
}
/*btn
*****************************************************/
#prPoster a.btn {
  transition: all 0.2s;
  border: none;
}
@media (max-width:959px) {
  a.btn {
    display: block;
  }
}
a.btn:hover {
  background-color: rgba(0, 0, 0, 0);
}
a.btn:visited {
  background-color: rgba(0, 0, 0, 0);
}
a.btn.beforeArrow, a.btn.afterArrow, a.btn.beforeArrow02, a.btn.afterArrow02 {
  position: relative;
}
a.btn.beforeArrow::before, a.btn.afterArrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid;
  border-bottom-color: currentcolor;
  border-right: 1px solid;
  border-right-color: currentcolor;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.2s;
}
a.btn.beforeArrow02::before, a.btn.afterArrow02::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 11px;
  border-bottom: 1px solid;
  border-bottom-color: currentcolor;
  border-right: 2px solid;
  border-right-color: currentcolor;
  transform: translateY(-17px) skew(45deg);
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  a.btn.beforeArrow02::before, a.btn.afterArrow02::after {
    width: 33px;
    height: 6px;
    transform: translateY(-9px) skew(45deg);
  }
}
a.btn.beforeArrow::before {
  left: 12px;
  top: 50%;
}
a.btn.afterArrow::after {
  right: 12px;
  top: 50%;
}
a.btn.beforeArrow02::before {
  left: -16px;
  top: 50%;
}
a.btn.afterArrow02::after {
  right: -16px;
  top: 50%;
}
@media screen and (max-width: 767px) {
  a.btn.afterArrow02::after {
    right: -10px;
  }
}
.fixedBox .btn.afterArrow02::after {
  width: 44px;
  height: 6px;
  transform: translateY(-12px) skew(45deg);
}
@media screen and (max-width: 767px) {
  .fixedBox .btn.afterArrow02::after {
    width: 26px;
    height: 5px;
    transform: translateY(-8px) skew(45deg);
    right: -13px;
  }
}
a.btn.beforeArrow.downArrow::before, a.btn.afterArrow.downArrow::after {
  transform: translateY(-60%) rotate(45deg);
}
a.afterArrow:hover::after {
  right: 8px;
}
a.btn.afterArrow02:hover::after {
  right: -28px;
}
/*loading
*****************************************************/
#loading {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/pr_poster02_bg03.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  background-color: #111;
  line-height: 1.2;
}
#loadingBar {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translateX(-50%);
  color: #fff;
}
#loadingBar svg {
  height: 10px;
}
/*.loadingTextBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.4;
}*/
.loadingText {
  font-size: 50px;
}
.loadingLogo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
}
#flyIn {
  font-size: 4em;
  margin: 40vh auto;
  height: 20vh;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  #flyIn {
    margin: 32vh auto 40vh;
  }
}
#flyIn .loadingText {
  position: fixed;
  margin: 1vh 0;
  opacity: 0;
  left: 10vw;
  width: 80vw;
  animation: switch 32s linear infinite;
}
@media screen and (max-width: 767px) {
  #flyIn .loadingText {
    left: 11.5vw;
  }
}
/*#flyIn .loadingText:nth-child(2) { animation-delay: 4s}
#flyIn .loadingText:nth-child(3) { animation-delay: 8s}
#flyIn .loadingText:nth-child(4) { animation-delay: 12s}
#flyIn .loadingText:nth-child(5) { animation-delay: 16s}
#flyIn .loadingText:nth-child(6) { animation-delay: 20s}
#flyIn .loadingText:nth-child(7) { animation-delay: 24s}
#flyIn .loadingText:nth-child(8) { animation-delay: 28s}*/
@keyframes switch {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(12)
  }
  3% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1)
  }
  10% {
    opacity: 1;
    filter: blur(0);
    transform: scale(.9)
  }
  13% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(.1)
  }
  80% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}
/*goal
*****************************************************/
.goalArea {
  color: #efefef;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
}
.sectionArea.goalArea {
  overflow: hidden;
  /*background-color: #797572;
  background-image: -webkit-linear-gradient(263deg, rgba(255, 255, 255, 0.2) 0%, #000000 100%), -webkit-linear-gradient(18deg, rgba(255, 255, 255, 0.25) 25%, rgba(0, 0, 0, 0.25) 100%), -webkit-radial-gradient(47% 102%, rgba(255, 255, 255, 0.5) 0%, rgba(21, 24, 32, 0.6) 120%);
  background-image: linear-gradient(-173deg, rgba(255, 255, 255, 0.2) 0%, #000000 100%), linear-gradient(72deg, rgba(255, 255, 255, 0.25) 25%, rgba(0, 0, 0, 0.25) 100%), radial-gradient(47% 102%, rgba(255, 255, 255, 0.5) 0%, rgba(21, 24, 32, 0.6) 120%);
  background-blend-mode: multiply;*/
  background-image: url("../img/pr_poster02_bg13.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .sectionArea.goalArea {
    background-image: url("../img/pr_poster02_bg14.jpg");
  }
}
.goalAreaContentsBox {
  padding: 0 80px;
  width: 100%;
  max-width: 1400px;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .goalAreaContentsBox {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .goalAreaContentsBox {
    padding: 0 30px;
  }
}
#prPoster a.goalBtn {
  background: rgb(106, 17, 20);
  background: -webkit-linear-gradient(bottom, rgba(106, 17, 20, 1) 0%, rgba(152, 19, 31, 1) 100%);
  background: -o-linear-gradient(bottom, rgba(106, 17, 20, 1) 0%, rgba(152, 19, 31, 1) 100%);
  background: linear-gradient(to top, rgba(106, 17, 20, 1) 0%, rgba(152, 19, 31, 1) 100%);
  color: #fff;
  font-size: 26px;
  padding: 30px 30px 40px;
  position: relative;
  line-height: 1.3;
  max-width: 1200px;
  margin: auto;
  transition: all 0.2s;
}
#prPoster a.goalBtn:hover {
  opacity: 0.9;
}
#prPoster .fixedBox a.goalBtn {
  font-size: 18px;
  padding: 20px 40px 26px;
}
@media screen and (max-width: 767px) {
  #prPoster .fixedBox a.goalBtn {
    font-size: 16px;
    padding: 12px 22px 16px;
    border-top: 1px solid #a3905d;
    border-right: 1px solid #a3905d;
  }
}
#prPoster a.goalBtn.afterArrow02::after {
  border-color: #a3905d;
}
@media screen and (max-width: 767px) {
  #prPoster a.goalBtn {
    font-size: 5vw;
    padding: 20px 20px 26px;
  }
}
#prPoster a.goalBtn::before {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 100%;
  height: 99%;
  content: "";
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 1px solid #a3905d;
}
@media screen and (max-width: 767px) {
  #prPoster a.goalBtn::before {
    top: -4px;
    left: -4px;
  }
  #prPoster .fixedBox a.goalBtn::before {
    display: none;
  }
}
#prPoster a.goalBtn:hover::before {
  top: 0;
  left: 0;
}
#prPoster a.goalBtn.afterArrow::after {
  border-width: 2px;
  transition: all 0.2s;
}
.goalBtnLead {
  font-size: 28px;
  margin-bottom: 5px;
}
#prPoster.soldOut a.goalBtn {
  background: rgb(98, 98, 98);
  pointer-events: none;
}
#prPoster.soldOut .goalBtnAttentText{
  display: none;
}
#prPoster.soldOut .fixedBox{
  display: none;
}
.goalAreaContents {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .goalAreaContents {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: -webkit-space-between;
    justify-content: space-between;
  }
  .goalAreaContents .goalContentsItem {
    width: 47%;
    position: relative;
  }
  .goalAreaContents .goalContentsItem:nth-of-type(2n) {
    margin-top: 380px;
  }
  .goalArea:not(.goalArea03) .goalContentsPriceBox {
    position: absolute;
    width: 440px;
  }
  .goalArea:not(.goalArea03) .goalAreaContents .goalContentsItem:nth-of-type(1) .goalContentsPriceBox {
    top: 34px;
    right: -440px;
    text-align: left;
  }
  .goalArea:not(.goalArea03) .goalAreaContents .goalContentsItem:nth-of-type(2) .goalContentsPriceBox {
    bottom: 60px;
    left: -440px;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .goalAreaContents .goalContentsItem + .goalContentsItem {
    margin-top: 70px;
  }
}
.goalContentsPriceInfo {
  margin: 0 24px;
}
.goalAreaContents .goalContentsItem {
  text-align: center;
}
.goalContentsHeadingBox {
  font-size: 30px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .goalContentsHeadingBox {
    font-size: 27px;
  }
}
@media screen and (max-width: 767px) {
  .goalContentsHeadingBox {
    font-size: 26px;
  }
}
.goalAreaContents .goalContentsItem:nth-of-type(1) .goalContentsHeadingBox {
  border-bottom: 2px solid #013872;
}
.goalAreaContents .goalContentsItem:nth-of-type(2) .goalContentsHeadingBox {
  border-bottom: 2px solid #720204;
}
@media screen and (min-width: 768px) {
  .goalArea:not(.goalArea03) .goalAreaContents .goalContentsItem:nth-of-type(1) .goalContentsHeadingBox {
    padding-right: 100px;
    padding-left: 16px;
  }
  .goalArea:not(.goalArea03) .goalAreaContents .goalContentsItem:nth-of-type(2) .goalContentsHeadingBox {
    padding-left: 100px;
    padding-right: 16px;
  }
}
.goalContentsImg {
  margin-bottom: 20px;
  box-shadow: 0px 0px 15px -5px #777777;
}
.goalContentsImg img {
  width: 100%;
}
.goalContentsPriceBox {
  line-height: 1.3;
}
.goalContentsPriceBox .limited {
  border: 1px solid #694f0b;
  padding: 4px 18px 6px;
  margin-bottom: 4px;
  font-size: 24px;
  display: inline-block;
}
.goalContentsPriceBox .price {
  font-size: 36px;
}
.goalContentsPriceBox .tax {
  font-size: 14px;
  margin-top: 8px;
}
.goalBtnAttentText {
  margin-top: 6px;
}
.sectionArea.goalArea02 {
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .sectionArea.goalArea02 {
    padding: 20px 20px 0;
  }
}
.goalBtnBox {
  position: relative;
  z-index: 5;
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}
.goalBtnBox.big {
  padding: 0 60px;
  margin: 80px auto;
}
@media screen and (max-width: 767px) {
  .goalBtnBox.big {
    padding: 20px 30px 20px;
  }
}
.goalAreaContentsBox .goalBtnBox {
  padding: 0;
}
.goalContentsBgItem01, .goalContentsBgItem02 {
  max-width: 460px;
  position: absolute;
}
.goalContentsBgItem01 img, .goalContentsBgItem02 img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .goalContentsBgItem01 {
    top: -32px;
    left: 20px;
    width: 40%;
  }
  .goalContentsBgItem02 {
    top: -44px;
    right: 20px;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .goalContentsBgItem01 {
    width: 50%;
    top: -17px;
    left: -57px;
  }
  .goalContentsBgItem02 {
    width: 50%;
    bottom: -18px;
    right: -59px;
  }
}
.goalArea.goalArea03 {
  color: #333;
  background-image: url("../img/pr_poster02_bg02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .goalArea.goalArea03 .goalAreaContents .goalContentsItem:nth-of-type(2n) {
    margin-top: 0;
  }
}
/*bg
*****************************************************/
.bgVideo {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  background-image: url("../img/pr_poster_bg01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bgVideo::after {
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.82);
  display: block;
  position: fixed;
}
.bgVideo video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.sectionArea.video .textBox {
  max-width: 560px;
  margin: 0 auto 60px;
}
/*playVideoSection
*****************************************************/
.sectionArea.youtube {
  /*background: rgb(169, 137, 75);
  background: linear-gradient(0deg, rgb(117 82 15) 0%, rgb(137 98 24) 36%, rgb(108 71 0) 100%);
  background: rgb(176, 143, 79);
  background: linear-gradient(0deg, rgba(176, 143, 79, 1) 0%, rgba(161, 113, 18, 1) 100%);*/
  background: rgb(172,138,87);
  background: linear-gradient(0deg, rgba(172,138,87,1) 0%, rgba(134,106,64,1) 100%);
}
@media screen and (max-width: 767px) {
  .sectionArea.youtube {
    padding: 40px 0 30px;
  }
  .sectionArea.youtube .inner {
    padding: 0 16px;
  }
}
.playVideoBtnBox {
  text-align: center;
}
.playVideoBtn {
  position: relative;
  display: inline-block;
  font-size: 32px;
  transition: .3s;
  padding: 6px 28px 12px 62px;
  background-color: #fff;
  border: 1px solid #fff;
}
.playVideoBtn:hover {
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.00);
}
.gg-play-button-o {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 38px;
  border: 2px solid;
  border-radius: 20px;
  top: 50%;
  left: 12px;
  transform: translateY(-50%) scale(var(--ggs, 1));
}
.gg-play-button-o::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid;
  top: 9px;
  left: 12px;
}
.playVideoBtnVideoStyle {
  display: inline-block;
  position: relative;
  width: 100%;
}
.playVideoBtnVideoStyle video {
  border: 1px solid #9e7f29;
  transition: all 0.2s;
}
.playVideoBtnVideoStyle:hover video {
  transform: scale(0.98);
}
.playVideoBtnVideoStyle .gg-play-button-o {
  z-index: 8;
  width: 160px;
  height: 160px;
  border: 2px solid;
  border-radius: 80px;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--ggs, 1));
  color: #fff;
  transition: all 0.2s;
}
.playVideoBtnVideoStyle .gg-play-button-o::before {
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 50px solid;
  top: 48px;
  left: 57px;
  color: #fff;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .playVideoBtnVideoStyle .gg-play-button-o {
    width: 96px;
    height: 96px;
    transform: translate(-50%, -57%) scale(var(--ggs, 1));
  }
  .playVideoBtnVideoStyle .gg-play-button-o::before {
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 30px solid;
    top: 27px;
    left: 36px;
  }
}
@media screen and (min-width: 768px) {
  .playVideoBtnVideoStyle:hover .gg-play-button-o {
    width: 150px;
    height: 150px;
    color: rgba(255, 255, 255, 0.50);
  }
  .playVideoBtnVideoStyle:hover .gg-play-button-o::before {
    border-top: 26px solid transparent;
    border-bottom: 26px solid transparent;
    border-left: 44px solid;
    color: rgb(255, 255, 255, 0.5);
    top: 47px;
    left: 55px;
  }
}
/*youtubeVideoBox(YouTube埋め込み用)
*****************************************************/
/*.youtubeVideoBox {
  width: 100%;
  aspect-ratio: 16/9;
}*/
/*header
*****************************************************/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 12px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .header {
    padding: 8px;
  }
  .siteLogo h1 {
    font-size: 1px;
  }
}
.headerArea {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.siteLogo {
  width: 140px;
}
.headerArea .siteLogo h1 img {
  margin: auto;
}
.headerLine {
  background-color: #fff;
  height: 1px;
  width: calc(100% - 264px);
}
.headerShareArea {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-self: center;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .siteLogo {
    width: 86px;
  }
  .headerLine {
    width: calc(100% - 202px);
  }
}
.headerShareAreaTitle {
  /*filter: invert(100%) grayscale(100%) contrast(100);
  mix-blend-mode: exclusion;*/
  margin-top: 2px;
}
.headerShareAreaList {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-self: center;
  margin-left: 7px;
}
.headerShareAreaItem {
  width: 20px;
}
.headerShareAreaItem + .headerShareAreaItem {
  margin-left: 5px;
}
.headerShareBtn {
  display: inline-block;
  transition: .3s;
}
.headerShareBtn:hover {
  opacity: 0.6;
}
/*mainVisual
*****************************************************/
.mainVisualArea {
  width: 100%;
  position: relative;
}
.mainVisualCover {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: relative;
  background-color: #000;
}
.mainVisualCoverTextWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  text-align: center;
  color: #efefef;
}
.mainVisualCoverBgWrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mainVisualCoverBgWrap::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: block;
  z-index: 14;
}
.mainVisualCoverBgList {
  width: 100%;
  height: 100%;
  position: relative;
}
.mainVisualCoverBgItem {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.mainVisualHeading {
  position: absolute;
  width: 100%;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}
.mainVisualSubHeading {
  margin-bottom: 110px;
}
.mainVisualSubHeading img {
  width: 94%;
  max-width: 1400px;
  margin: auto;
}
.mainVisualSubHeading img.pcHidden {
  width: 84%;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .mainVisualHeading {
    bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .mainVisualSubHeading {
    margin-bottom: 40px;
  }
}
.mainVisualTitleBox {
  position: absolute;
  z-index: 8;
  right: 50%;
}
@media screen and (min-width: 768px) {
  .mainVisualTitleBox {
    top: 53%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .mainVisualTitleBox {
    position: absolute;
    top: 100px;
    width: 94%;
    max-width: 366px;
    transform: translateX(50%);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  } /**/
}
.mainVisualArea {
  /*height: calc(100vh + 1px);*/
  position: relative;
  /*overflow: hidden;*/
}
.mainVisualImgWrap {
  width: 100%;
  max-width: 1640px;
  margin: auto;
}
.mainVisualImg {
  box-shadow: 0px 0px 15px -5px #777777;
}
@media screen and (min-width: 768px) {
  .mainVisualImg {
    width: calc(50% - 30px);
  }
}
.mainVisualImg img {
  width: 100%;
}
.mainVisualImg02.pcHidden {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .mainVisualImgContents {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .mainVisualImg {
    margin: 0px;
  }
}
.mainVisualTextBox {
  text-align: center;
}
.mainVisualTextBox h1.heading {
  color: #a9904c;
}
.mainVisualLead {
  color: #efefef;
  width: 50%;
  margin: 12px auto;
}
@media screen and (max-width: 767px) {
  .mainVisualLead {
    width: 80%;
  }
}
.mainVisualContents {
  background: rgb(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .mainVisualContents {
    padding: 20px 20px 100px;
  }
}
.mainVisualCatchBox {
  position: relative;
  padding: 100px 7vw;
  max-width: 2440px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mainVisualCatchBox {
    padding: 32px;
    max-width: 640px;
    border: 1px solid #a59154;
  }
}
.mainVisualHeadingBox {
  margin: 70px auto 0;
  width: 80%;
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  .mainVisualHeadingBox {
    margin: 30px auto;
    width: 92%;
  }
}
.mainVisualHeadingBox img {
  margin: 26px auto;
}
@media screen and (max-width: 767px) {
  .mainVisualHeadingBox img {
    margin: 6px auto;
  }
}
.mainVisualHeadingBox h1 .headingImg:nth-of-type(2) {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .mainVisualHeadingBox h1 .headingImg:nth-of-type(2) {
    width: 70%;
  }
}
/*contents
*****************************************************/
.heading {
  text-align: center;
  line-height: 1.2;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
}
.heading.gothic {
  font-family: 'Noto Sans JP', sans-serif;
}
h2.heading {
  font-size: 74px;
  margin-bottom: 74px;
  color: #ae9349;
}
h2.heading.fontEn {
  font-size: 110px;
  letter-spacing: -0.2rem;
}
h2.heading.fontEn.longText {
  font-size: 74px;
}
@media screen and (max-width: 767px) {
  h2.heading {
    font-size: 30px;
    margin-bottom: 48px;
  }
  h2.heading.fontEn {
    font-size: 16vw;
    line-height: 1.0;
  }
  h2.heading.fontEn.longText {
    font-size: 8.4vw;
  }
}
h3.heading {
  font-size: 54px;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  h3.heading {
    font-size: 26px;
    margin-bottom: 22px;
  }
}
h4.heading {
  font-size: 28px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  h4.heading {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.link {
  transition: all 0.2s;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}
.sectionArea {
  padding: 100px 20px 106px;
  position: relative;
}
.sectionArea.min {
  padding: 60px 20px 62px;
}
@media screen and (max-width: 767px) {
  .sectionArea {
    padding: 70px 0 76px;
  }
  .sectionArea.min {
    padding: 30px 0 32px;
  }
}
.sectionAboutBox {
  text-align: center;
  margin-bottom: 60px;
}
.sectionAboutBox, .sectionAboutBox .text {
  font-size: 20px;
}
/*video
*****************************************************/
.sectionArea.video {
  width: 100%;
  height: 100vh;
  position: relative;
  padding: 0;
}
.sectionArea.video .contentsBox {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 70%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 20px;
}
.sectionArea.video .heading {
  font-size: 10vw;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sectionArea.video .heading {
    line-height: 1;
    font-size: 24vw;
    margin-bottom: 25px;
  }
}
.sectionArea.video .subHeading {
  font-size: 3vw;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sectionArea.video .subHeading {
    font-size: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .sectionArea.video .contentsBox {
    width: 100%;
  }
}
/*Scrolldown
*****************************************************/
.scrolldown {
  position: absolute;
  padding-top: 60px;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  color: #efefef !important;
}
.scrolldown:hover {
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .scrolldown {
    left: 46%;
    bottom: -4%;
  }
}
.scrolldown span {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  border: 1px solid #fff;
  border-radius: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
}
.scrolldown span::after {
  position: absolute;
  top: 46%;
  left: 54%;
  content: '';
  width: 14px;
  height: 14px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: translate(-50%, -50%);
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
/*break
*****************************************************/
.breakArea {
  color: #efefef;
}
.breakAreaItem {
  font-size: 98px;
}
.breakAreaItem img {
  width: 1918px;
  height: 87px;
}
.breakAreaItem + .breakAreaItem {
  margin-left: 20px;
}
/*about
*****************************************************/
.aboutArea {
  color: #efefef;
  background-color: #000;
}
.aboutItemInner {
  padding: 26px;
}
@media screen and (min-width: 768px) {
  .aboutItemInner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .aboutItemList .aboutItem:nth-of-type(even) .aboutItemInner {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .aboutItemInnerBox {
    width: 50%;
    max-width: 850px;
  }
  .aboutItemList > .aboutItem:nth-of-type(odd) .aboutItemInner .aboutItemTextBox {
    padding-left: 24px;
  }
  .aboutItemList > .aboutItem:nth-of-type(even) .aboutItemInner .aboutItemTextBox {
    padding-right: 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1025px) {
  .aboutItemList > .aboutItem:nth-of-type(odd) .aboutItemInner .aboutItemTextBox {
    padding: 36px 36px 36px 10px;
  }
  .aboutItemList > .aboutItem:nth-of-type(even) .aboutItemInner .aboutItemTextBox {
    padding: 36px 10px 36px 36px;
  }
  .aboutItemList > .aboutItem .aboutItemInnerBox.aboutItemTextBox::before {
    top: -5px;
    left: 14px;
  }
}
.aboutItemImg {
  text-align: center;
}
.aboutItemImg img {
  max-height: 600px;
}
.aboutItemInnerBox.aboutItemTextBox {
  position: relative;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .aboutItemInnerBox.aboutItemTextBox {
    padding: 20px 0 30px;
  }
}
.aboutItemList > .aboutItem .aboutItemInnerBox.aboutItemTextBox::before {
  position: absolute;
  top: 0;
  color: #362a08;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .aboutItemList > .aboutItem .aboutItemInnerBox.aboutItemTextBox::before {
    top: -20px;
    left: -20px;
    font-size: 44px;
    line-height: 44px;
  }
}
.aboutItemList > .aboutItem:nth-of-type(1) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "01";
}
.aboutItemList > .aboutItem:nth-of-type(2) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "02";
}
.aboutItemList > .aboutItem:nth-of-type(3) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "03";
}
.aboutItemList > .aboutItem:nth-of-type(4) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "04";
}
.aboutItemList > .aboutItem:nth-of-type(5) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "05";
}
.aboutItemList > .aboutItem:nth-of-type(6) .aboutItemInnerBox.aboutItemTextBox::before {
  content: "06";
}
.aboutItemText {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 1335px) {
  .aboutItemText {
    width: 60%;
    margin: auto;
    min-width: 420px;
  }
}
@media screen and (max-width: 767px) {
  .aboutItemTextBox {
    padding: 40px 30px 50px;
  }
}
.aboutHeading {
  text-align: center;
  margin-bottom: 30px;
}
.aboutHeading .heading {
  font-size: 50px;
}
@media screen and (max-width: 1025px) {
  .aboutHeading .heading {
    font-size: 40px;
  }
}
.aboutSubHeading {
  color: #836f3a;
  font-size: 18px;
  line-height: 1.6;
}
/*lead
*****************************************************/
.signArea {
  position: relative;
  padding: 0 30px 80px;
}
.signArea .sign {
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.signArea::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 10%, #000000 90%, #000000 100%);
}
.sectionArea.lead {
  position: relative;
  overflow: hidden;
  color: #efefef;
  background-color: #000;
  padding: 300px 0 280px;
}
@media screen and (max-width: 767px) {
  .sectionArea.lead {
    padding: 250px 0 150px;
  }
}
.bgLeft, .bgRight {
  position: absolute;
  width: 20%;
  height: 100%;
  background-repeat: repeat-y;
  background-size: contain;
}
.bgLeft {
  background-image: url("../img/pr_poster02_bg12.jpg");
  top: 0;
  left: 0;
}
.bgRight {
  background-image: url("../img/pr_poster02_bg08.jpg");
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .bgLeft, .bgRight {
    width: 80%;
  }
  .bgLeft {
    display: none;
  }
}
.sectionArea.lead::before, .sectionArea.lead::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 180px;
  z-index: 6;
}
.sectionArea.lead::before {
  top: -1px;
  background: linear-gradient(to top, transparent 0%, transparent 1%, #000000 90%, #000000 100%);
}
.sectionArea.lead::after {
  bottom: 0px;
  background: linear-gradient(to bottom, transparent 0%, transparent 1%, #000000 90%, #000000 100%);
}
.sectionArea.lead .inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .sectionArea.lead .inner {
    max-width: 700px;
  }
}
.sectionArea.lead h3.heading {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .sectionArea.lead h3.heading {
    font-size: 9.5vw;
    text-align: left;
    margin-bottom: 280px;
    letter-spacing: 0;
  }
}
.sectionArea.lead .bgHeading {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(18, 18, 18, 1.00);
  font-size: 8vw;
}
@media screen and (max-width: 767px) {
  .sectionArea.lead .bgHeading {
    font-size: 19vw;
    top: -20px;
    left: 8px;
  }
}
.sectionArea.lead .leadText {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .sectionArea.lead .leadText {
    font-size: 15px;
  }
  .sectionArea.lead .textBox {
    text-align: left;
  }
}
.text.leadText + .text.leadText {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .text.leadText {
    line-height: 2.3;
  }
}
@media screen and (max-width: 767px) {
  .leadTextWrap {
    position: relative;
    background-color: #000;
  }
  .leadTextWrap::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 180px;
    z-index: 7;
    top: -180px;
    background: linear-gradient(to bottom, transparent 0%, transparent 10%, #000000 80%, #000000 100%);
  }
  .sectionArea.lead::after {
    height: 150px;
    background: #000;
  }
}
.shomeiLogo {
  text-align: right;
  width: 170px;
  margin: 60px 0 0 auto;
}
.leadHeadingWrap {
  margin-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .leadHeadingWrap {
    margin-bottom: 160px;
  }
}
.leadImgList {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
}
.leadImgItem {
  width: calc(50% - 30px);
}
@media screen and (max-width: 767px) {
  .leadImgItem {
    width: calc(50% - 10px);
  }
}
.leadImgItem:nth-of-type(n+3) {
  margin-top: 30px;
}
.leadImgList {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .leadImgList {
    width: 100%;
  }
}
.leadContents + .leadContents {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .leadContents + .leadContents {
    margin-top: 60px;
  }
}
/*staff
*****************************************************/
.sectionArea.staff {
  color: #efefef;
  background-color: #000000;
}
.sectionArea.staff .leadText {
  text-align: center;
  margin-bottom: 30px;
}
.staffList {
  position: relative;
}
@media screen and (min-width: 768px) {
  .staffList {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .staffListItem {
    width: 29%;
  }
}
@media screen and (max-width: 767px) {
  .staffListItem {}
  .staffListItem + .staffListItem {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #9E7E29;
  }
}
.staffImg {
  width: 100%;
  margin-bottom: 26px;
}
.staffNameBox {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
}
.staffName {
  font-size: 46px;
}
@media screen and (max-width: 767px) {
  .staffName {
    font-size: 40px;
  }
}
.staffKana {
  font-size: 22px;
  font-weight: 400;
  color: #836f3a;
}
@media screen and (max-width: 767px) {
  .staffKana {
    font-size: 15px;
  }
}
.staffDetailText {
  position: relative;
  height: auto;
  max-height: 230px;
  overflow: hidden;
  transition: all 0.2s;
}
.staffDetailText::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  background: linear-gradient(to bottom, transparent 0%, transparent 46%, #000000 80%, #000000 100%);
}
.staffDetailText.open::after {
  background: rgba(0, 0, 0, 0.00);
}
.moreBtn {
  display: block;
  position: absolute;
  width: 90%;
  padding: 8px 20px;
  border: 1px solid #87723e;
  background-color: #141414;
  cursor: pointer;
  color: #efefef;
  z-index: 6;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
}
.moreBtn::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.moreBtn:hover {
  border: 1px solid #222;
}
.staffDetailText.open .moreBtn {
  display: none;
}
/*career
*****************************************************/
.sectionArea.career {
  color: #efefef;
  background-color: #070707;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sectionArea.career {
    padding-bottom: 0;
  }
}
.warRecordArea {
  /*background-image: url("../img/pr_poster02_bg04.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 50px 10px;*/
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .warRecordArea {
    padding: 40px 10px;
  }
}
.warRecordTextList {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.warRecordText {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  font-size: 90px;
}
.warRecordItem {
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .warRecordText {
    font-size: 12vw;
  }
  .warRecordItem {
    margin: 0 10px;
  }
}
.warRecordText.highlight {
  color: #a3905d;
  font-size: 160px;
}
@media screen and (max-width: 767px) {
  .warRecordText.highlight {
    font-size: 30vw;
  }
}
/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
}
.tab li a {
  display: block;
  background: #ddd;
  margin: 0 2px;
  padding: 10px 20px;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #fff;
}
/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
  padding: 50px 20px;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*gallery
*****************************************************/
.galleryWrap {
  margin-top: 162px;
  padding-left: 8vw;
}
@media screen and (max-width: 767px) {
  .galleryWrap {
    margin-top: 50px;
    padding-left: 20px;
  }
}
.galleryContents + .galleryContents {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .galleryContents + .galleryContents {
    margin-top: 70px;
  }
}
.gallery {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery li + li {
  margin-left: 4px;
}
@media screen and (max-width: 767px) {
  .gallery li {
    margin-left: 2px;
  }
}
.gallery li a {
  transition: all 0.2s;
}
.gallery li a:hover {
  opacity: 0.7;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}
.galleryWrap {
  color: #efefef;
}
@media screen and (min-width: 768px) {
  .galleryListBox {
    margin-top: 30px;
  }
}
.galleryHeadingBox {
  line-height: 1.2;
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  .galleryHeadingBox {
    margin-top: -14px;
  }
}
.galleryHeading {
  font-size: 3vw;
  margin-bottom: 20px;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .galleryHeading {
    font-size: 9vw;
    margin-bottom: 10px;
  }
}
.galleryHeading.round {
  font-size: 2vw;
  filter: drop-shadow(0px 0px 6px #000);
  width: 34vw;
  max-width: 700px;
}
.galleryWrap > .galleryContents:first-child .galleryHeading.round {
  width: 29vw;
}
@media screen and (max-width: 767px) {
  .galleryHeading.round {
    font-size: 10vw;
    width: 85vw;
  }
  .galleryWrap > .galleryContents:first-child .galleryHeading.round {
    width: 77vw;
  }
  .galleryHeading.round .lightRed {
    font-size: 24vw;
  }
  .galleryHeading.round .lightRed.min {
    font-size: 8vw;
  }
}
.galleryText {
  margin-top: 14px;
  padding-right: 30px;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .galleryText {
    font-size: 20px;
    margin-bottom: 50px;
  }
}
.slick-list {
  padding: 0 6vw 0 0;
}
@media screen and (max-width: 767px) {
  .slick-list {
    padding: 0 50px 0 0;
  }
}
.slick-arrow {
  position: absolute;
  width: 30px;
  height: 30px;
  z-index: 4;
  background-color: #00000070;
  bottom: -44px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  .slick-arrow {
    bottom: 15px;
  }
}
.slick-arrow:hover {
  background-color: #00000020;
  border: 1px solid #ffffff50;
}
.prev {
  right: 52px;
}
.next {
  right: 15px;
}
.gg-chevron-right {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  color: #fff;
  background-color: #000000c4;
}
.gg-chevron-right::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  border-color: #fff;
  transform: rotate(-45deg);
  right: 9px;
  top: 6px;
}
.gg-chevron-left {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(var(--ggs, 1));
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  background-color: #000000c4;
}
.gg-chevron-left::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-color: #fff;
  transform: rotate(45deg);
  left: 9px;
  top: 6px;
}
/*catchRound
*****************************************************/
.catchRoundBox {
  margin: 150px auto 20px;
  padding: 0 20px 60px;
  text-align: center;
  width: 100%;
  max-width: 1400px;
  /*background-image: url("../img/pr_poster02_bg07.png");
  background-position: bottom;
  background-size: 123%;
  background-repeat: no-repeat;*/
}
@media screen and (max-width: 767px) {
  .catchRoundBox {
    margin: 110px auto 0;
    padding: 0;
  }
}
.catchRoundTextBox .text {
  font-size: 38px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .catchRoundTextBox .text {
    font-size: 30px;
  }
}
.catchRoundHeading {
  margin: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .catchRoundHeading {
    margin: 40px 0;
  }
}
.catchRoundHeading .heading {
  font-size: 86px;
}
@media screen and (max-width: 767px) {
  .catchRoundHeading .heading {
    font-size: 11vw;
  }
}
.catchRoundImgBox {
  text-align: center;
  position: relative;
}
.catchRoundImg {
  width: 100%;
  margin: auto;
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .catchRoundImg {
    padding: 0;
  }
}
.catchRoundImg img {
  width: 100%;
}
/*.catchRoundImgDeco {
  position: absolute;
  width: 73%;
  max-width: 1000px;
}
.catchRoundImgDeco01 {
  top: -1%;
}
.catchRoundImgDeco02 {
  bottom: -1%;
  right: 0;
  width: 66%;
}
.catchRoundBgBox{
  height: 110vh;
  position: relative;
}
.catchRoundBgBox .catchRoundHeading{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,0.80);
  color: #efefef;
  padding: 40px 30px 50px;
  margin: 0 auto;
}*/
/*attent
*****************************************************/
.sectionArea.attent {
  background-image: url("../img/pr_poster02_bg01.png");
}
/*noteBox
*****************************************************/
.noteBox {
  border-width: 1px;
  border-style: solid;
  border-color: #000;
  line-height: 2.0;
  padding: 34px;
}
@media screen and (max-width: 767px) {
  .noteBox {
    padding: 24px;
  }
}
.noteBox.white {
  border-color: #fff;
}
.noteHeading {
  font-weight: 700;
  margin-bottom: 32px;
}
.noteListItemHeading {
  margin-bottom: 6px;
}
.noteListItemHeading::before {
  content: "◆";
  padding-right: 0.2em;
}
.noteListItem + .noteListItem {
  margin-top: 26px;
}
.noteBox02 {
  padding: 50px;
  margin-top: 30px;
  background-color: #E9E9E9;
}
@media screen and (max-width: 767px) {
  .noteBox02 {
    padding: 30px;
  }
}
/*footer
*****************************************************/
.footer {
  position: relative;
  background-color: #000;
  padding: 40px 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 90px;
  }
}
.footerText {
  font-size: 14px;
  color: #efefef;
}
.footerText + .footerText {
  margin-top: 8px;
}
.footerBtnArea {
  max-width: 940px;
  margin: 0 auto 20px;
}
.incLogo .siteLogo {
  margin: 0 auto 30px;
}
#prPoster a.btn.footerBtn {
  position: relative;
  display: inline-block;
  color: #fff;
  padding: 4px 8px;
  border: 1px solid #fff;
  width: 220px;
  background-color: #000;
}
#prPoster a.btn.footerBtn:hover, #prPoster a.btn.footerBtn:visited, #prPoster a.btn.footerBtn:active {
  text-decoration: none;
}
#prPoster a.btn.footerBtn:visited, #prPoster a.btn.footerBtn:active {
  color: #fff;
}
#prPoster a.btn.footerBtn:hover {
  background-color: #222;
}
.copyright {
  font-size: 12px;
  line-height: 1.4;
}
.pageTopBtnArea {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border: 1px solid #fff;
  transition: all 0.2s;
  width: 40px;
  height: 40px;
}
.pageTopBtn.btn {
  text-align: center;
  width: 100%;
  height: 100%;
  background: none;
}
.pageTopBtnArea:hover {
  border: 1px solid #444;
}
/*animate
*****************************************************/
.animeWait {
  opacity: 0;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/*.gallery li {
  opacity: 0;
}*/
.lb-data .lb-caption {
  font-size: 20px;
  line-height: 1.2em;
}
.cXenseParse {
  /*margin-top: 100px;*/
}
.fixedBox {
  position: fixed;
  bottom: 10px;
  left: 15px;
  z-index: 996;
}
@media screen and (max-width: 767px) {
  .fixedBox {
    position: fixed;
    bottom: 0;
    left: 0;
  }
}
.fixedBox.UpMove {
  animation: UpAnime 0.2s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
.fixedBox.DownMove {
  animation: DownAnime 0.2s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*テキストアニメーション用
********************************************/
.smoothText {
  overflow: hidden;
  display: block;
}
/* アニメーションで傾斜がついている文字列を水平に戻す*/
.smoothTextTrigger {
  transition: .8s ease-in-out;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transform-origin: left;
  display: block;
}
.smoothTextTrigger.smoothTextAppear {
  transform: translate3d(0, 0, 0) skewY(0);
}