@charset "utf-8";

/*================================================
Firstview
================================================*/

.Firstview {
  position: relative;
  overflow: hidden;
  background-image: none !important;
}

/*================================================
Firstview (Movie & Screen)
================================================*/

.FirstviewMovie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.FirstviewMovieMP4 {
  width: 100%;
  height: 100%;
}
.FirstviewScreen {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/firstview_screen.webp);
}

@media (max-width: 1023px) {

  .Firstview {
    height: 60vh;
    min-height: 500px;
  }
  .FirstviewMovie {
    width: 100%;
    height: 100%;
  }
  .FirstviewMovieMP4 {
    object-fit: cover;
  }
  .FirstviewScreen {
    width: 100%;
    height: 100%;
  }
}

/*================================================
FirstviewTitle
================================================*/

.FirstviewTitle {
  width: 80%;
  margin: 0px auto;
  padding: 125px 0px 175px 0px;
}
.FirstviewTitleInner {
  width: 80%;
}
.FirstviewTitle h1 {
  width: 100%;
  margin: 0px auto 50px auto;
}
.FirstviewTitle h1 img {
  width: 100%;
  height: auto;
}
.FirstviewTitleLead {
  width: 35%;
  margin-bottom: 50px;
  line-height: 1.50;
  text-align: justify;
  text-justify: inter-ideograph;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}
.FirstviewTitleArrow {
  width: 35%;
  text-align: center;
}
.FirstviewTitleArrow img {
  width: 50px;
  height: auto;
  margin: 0px auto;
}

@media (max-width: 1365px) {

  .FirstviewTitle {
    width: 80%;
    padding: 75px 0px 125px 0px;
  }
  .FirstviewTitleInner {
    width: 96%;
  }
  .FirstviewTitle h1 {
    margin: 0px auto 25px auto;
  }
  .FirstviewTitleLead {
    width: 60%;
    margin-bottom: 25px;
    font-size: 18px;
  }
  .FirstviewTitleArrow {
    width: 60%;
    text-align: left;
  }
  .FirstviewTitleArrow img {
    width: 50px;
    height: auto;
  }
}

@media (max-width: 1023px) {

  .FirstviewTitle {
    width: 100%;
    padding: 35px 0px 25px 0px;
  }
  .FirstviewTitleInner {
    width: 100%;
    margin: 0px auto 0px auto;
  }
  .FirstviewTitle h1 {
    width: 80%;
    margin: 0px auto 25px auto;
  }
  .FirstviewTitle h1 img {
    width: 100%;
    height: auto;
  }
  .FirstviewTitleLead {
    width: 80%;
    margin: 0px auto 0px auto;
    margin-bottom: 25px;
    line-height: 1.50;
    font-size: 14px;
  }
  .FirstviewTitleArrow {
    width: 100%;
    text-align: center;
  }
  .FirstviewTitleArrow img {
    width: 35px;
    height: auto;
  }
}

/*================================================
FirstviewHuman
================================================*/

.FirstviewHuman {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  float: none;
  width: 80%;
}
.FirstviewHuman figure {
  width: 100%;
}
.FirstviewHuman figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 1365px) {

  .FirstviewHuman {
    width: 90%;
  }
}

@media (max-width: 1023px) {

  .FirstviewHuman {
    position: absolute;
    bottom: 0;
    width: 125%;
    margin-left: -25%;
  }
}

/*================================================
Firstview (Animation Effect JS)
================================================*/

.js-animate-title,
.js-animate-arrow {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.75s ease-out, transform 0.75s ease-out;
}
.js-animate-lead {
  opacity: 0;
  transform: translateY(-32px);
  transition: opacity 1.75s ease-out, transform 0.75s ease-out;
}
.js-animate-human {
  opacity: 0;
  transform: translateX(16px) translateY(8px);
  transition: opacity 1.75s ease-out, transform 0.75s ease-out;
}
.js-animate-title.is-animated,
.js-animate-arrow.is-animated {
  opacity: 1;
  transform: scale(1.0);
}
.js-animate-lead.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.js-animate-human.is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-animate-arrow.is-blinking {
  animation: blink-arrow 1.25s infinite alternate;
}

@keyframes blink-arrow { 0% { opacity: 0; } 100% { opacity: 1; } }

/*================================================
Migration
================================================*/

.Migration {
  background-color: #FFFFFF;
  margin: 100px auto;
}
.MigrationInner {
  width: 80%;
  margin: 0px auto;
}
.ButtonBuynow {
  display: block;
  float: left;
  width: 45%;
  margin: 0px 2.5%;
  padding: 30px;
  border-top: 1px #CCCCCC solid;
  border-bottom: 1px #CCCCCC solid;
  text-align: right;
  text-decoration: none;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
.ButtonFeature {
  display: block;
  float: left;
  width: 50%;
  padding: 30px;
  border-top: 1px #CCCCCC solid;
  border-bottom: 1px #CCCCCC solid;
  text-align: left;
  text-decoration: none;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
.ButtonBuynow:hover {
  background-image: linear-gradient(90deg, #EEEEEE 0%, #FFFFFF 50%, #CCCCCC 100%);
  background-position: 0% 0%;
	background-size: 1000px 100%;
  animation: Grad 1.50s linear infinite;
  animation-delay: 0.25s;
}
.ButtonFeature:hover {
  background-image: linear-gradient(90deg, #FFFFFF 0%, #CCCCCC 50%, #EEEEEE 100%);
  background-position: 0% 0%;
	background-size: 1000px 100%;
  animation: Grad 1.50s linear infinite;
  animation-delay: 0.25s;
}

@keyframes Grad { 0% { background-position: 0 0%; } 100% { background-position: 1000px 0%; } }

.MigrationButton span {
  margin: 0px 10px;
  line-height: 1.25;
  color: #000000;
  font-size: 32px;
  font-weight: 900;
}
.MigrationButton strong {
  line-height: 1.25;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}
.ButtonBuynow figure {
  display: block;
  float: right;
  width: 25px;
  margin-top: 15px;
  margin-left: 10px;
}
.ButtonFeature figure {
  display: block;
  float: left;
  width: 25px;
  margin-top: 15px;
  margin-right: 10px;
}
@media (max-width: 1365px) {

  .Migration {
    margin: 75px auto;
  }
  .MigrationInner {
    width: 90%;
  }
  .ButtonBuynow {
    padding: 20px;
  }
  .ButtonFeature {
    padding: 20px;
  }
  .MigrationButton span {
    font-size: 28px;
  }
  .MigrationButton strong {
    font-size: 15px;
  }
  .ButtonBuynow figure {
    margin-top: 10px;
  }
  .ButtonFeature figure {
    margin-top: 10px;
  }
}
@media (max-width: 1023px) {

  .Migration {
    margin: 25px auto;
  }
  .MigrationInner {
    width: 96%;
  }
  .MigrationButton span {
    display: none;
  }
  .MigrationButton strong {
    font-size: 15px;
  }
  .ButtonBuynow figure {
    margin-top: 3px;
  }
  .ButtonFeature figure {
    margin-top: 3px;
  }
}

/*================================================
Migration (Animation Effect JS)
================================================*/

.js-migration-buynow {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.js-migration-feature {
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.js-migration-buynow.is-animated,
.js-migration-feature.is-animated {
  opacity: 1;
  transform: translateX(0);
}

/*================================================
Buy
================================================*/

.Buy,
.BuyUpper,
.BuyUnder {
  padding: 100px 0px;
  background-color: #EEEEEE;
}
.BuyPhoto  {
  float: left;
  width: 50%;
  margin-bottom: 25px;
  box-sizing: border-box;
}
.BuyToForm {
  float: left;
  width: 50%;
  margin-bottom: 25px;
  box-sizing: border-box;
}
.BuyPhotoInner {
  width: 50%;
  margin: 0px 5% 0px 45%;
  box-sizing: border-box;
}
.BuyToFormInner {
  width: 50%;
  margin: 0px 45% 0px 5%;
  padding-top: 15px;
  box-sizing: border-box;
}
.BuyPhoto img {
  display: block;
  width: 100%;
  height: auto;
}
.BuyToFormName {
  margin-bottom: 20px;
  line-height: 1.25;
  font-size: 20px;
  font-weight: 700;
}
.BuyToFormText {
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.50;
  font-size: 16px;
  font-weight: 400;
}
.BuyToFormPrice {
  margin-bottom: 20px;
  line-height: 1.25;
}
.BuyToFormPrice strong {
  margin-right: 5px;
  font-size: 24px;
  font-weight: 900;
}
.BuyToFormPrice i {
  margin-right: 5px;
  font-size: 20px;
  font-weight: 700;
}
.BuyToFormPrice span {
  font-size: 14px;
  font-weight: 400;
}
.BuyToFormButtonRed {
  display: inline-block;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #BF0000;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 900;
}
.BuyToFormButtonRed.js-buy-button:hover {
  transition: all 0.3s ease;
  background-color: #990000;
}
.BuyToFormButtonRed img {
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
  margin-right: 10px;
}
.BuyToFormButtonBlue {
  display: inline-block;
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  background-color: #142F83;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 900;
}
.BuyToFormButtonBlue.js-buy-button:hover {
  transition: all 0.3s ease;
  background-color: #0F1A5F;
}
.BuyToFormButtonBlue img {
  width: 30px;
  height: 30px;
  margin-bottom: 3px;
  margin-right: 10px;
}
.BuyToFormButtonComingSoon {
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.25;
  color: #BF0000;
  font-size: 18px;
  font-weight: 900;
}
.BuyToFormAttention {
  padding: 20px 25px;
  text-align: justify;
  text-justify: inter-ideograph;
  background-color: #FFFFFF;
}
.BuyToFormAttention li {
  margin-bottom: 5px;
  line-height: 1.50;
  font-size: 13px;
  font-weight: 400;
}
.BuyToFormAttention li:last-of-type {
  margin-bottom: 0px;
}
.BuyToFormAttention .RBS {
  color: #000000;
}
.BuyToFormAttention .Normal {
  color: #000000;
}

@media (max-width: 1365px) {
  
  .Buy,
  .BuyUpper,
  .BuyUnder {
    padding: 75px 0px;
  }
  .BuyPhotoInner {
    width: 70%;
    margin: 0px 5% 0px 25%;
  }
  .BuyToFormInner {
    width: 70%;
    margin: 0px 25% 0px 5%;
    padding-top: 25px;
  }
  .BuyToFormName {
    font-size: 18px;
  }
  .BuyToFormText {
    font-size: 15px;
  }
  .BuyToFormPrice strong {
    font-size: 22px;
  }
  .BuyToFormPrice i {
    font-size: 18px;
  }
  .BuyToFormPrice span {
    font-size: 13px;
  }
  .BuyToFormButtonRed {
    margin-bottom: 25px;
    padding: 20px;
    font-size: 28px;
  }
  .BuyToFormButtonRed img {
    width: 25px;
    height: 25px;
  }
  .BuyToFormButtonBlue {
    margin-bottom: 25px;
    padding: 20px;
    font-size: 28px;
  }
  .BuyToFormButtonBlue img {
    width: 25px;
    height: 25px;
  }
  .BuyToFormButtonComingSoon {
    font-size: 16px;
  }
  .BuyToFormAttention {
    padding: 15px 20px;
  }
  .BuyToFormAttention li {
    font-size: 13px;
  }
}
@media (max-width: 1023px) {

  .Buy,
  .BuyUpper,
  .BuyUnder {
    padding: 35px 25px;
  }
  .BuyPhoto  {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .BuyToForm {
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
  .BuyPhotoInner {
    float: none;
    width: 65%;
    margin: 0px auto 25px auto;
  }
  .BuyToFormInner {
    float: none;
    width: 100%;
    margin: 0px 0% 0px 0%;
  }
  .BuyToFormName {
    text-align: center;
    font-size: 16px;
  }
  .BuyToFormText {
    font-size: 14px;
  }
  .BuyToFormPrice {
    text-align: center;
  }
  .BuyToFormPrice strong {
    font-size: 20px;
  }
  .BuyToFormPrice i {
    font-size: 16px;
  }
  .BuyToFormPrice span {
    font-size: 12px;
  }
  .BuyToFormButtonRed {
    display: block;
    text-align: center;
    font-size: 24px;
  }
  .BuyToFormButtonRed img {
    width: 25px;
    height: 25px;
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .BuyToFormButtonBlue {
    display: block;
    text-align: center;
    font-size: 24px;
  }
  .BuyToFormButtonBlue img {
    width: 25px;
    height: 25px;
    margin-bottom: 0px;
    margin-right: 10px;
  }
  .BuyToFormButtonComingSoon {
    font-size: 14px;
  }
  .BuyToFormAttention {
    padding: 15px 15px;
  }
  .BuyToFormAttention li {
    font-size: 12px;
  }
}

/*================================================
Buy (RBS Naire)
================================================*/

.Naire {
  clear: both;
  width: 55%;
  margin: 0px auto 0px auto;
  padding: 35px 25px 25px 25px;
  border: 5px #142F83 solid;
  background-color: #FFFFFF;
  box-sizing: border-box;
}
.NaireTitle {
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.25;
  color: #142F83;
  font-size: 24px;
  font-weight: 900;
}
.NaireStep {
  margin-bottom: 20px;
}
.NaireStep:last-of-type {
  margin-bottom: 0px;
}
.NaireStepMidashi {
  margin-bottom: 15px;
  line-height: 1.25;
  font-size: 18px;
  font-weight: 700;
}
.NaireStepMidashi span {
  padding: 7px;
  color: #FFFFFF;
  background-color: #142F83;
}
.NaireStepMidashi strong {
  padding: 7px;
  color: #000000;
  background-color: #FFFFFF;
}
.NaireStepExplain {
  margin-bottom: 0px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.50;
  font-size: 15px;
  font-weight: 400;
}
.NaireStepExplainSupplement {
  margin-top: 10px;
  margin-bottom: 0px;
  padding: 20px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.50;
  background-color: #DCE0ED;
  font-size: 14px;
  font-weight: 400;
}
.NaireStepExplainFormat {
  padding: 20px;
  background-color: #EEEEEE;
}
.NaireStepExplainFormatOne {
  margin-bottom: 10px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.50;
  font-size: 13px;
}
.NaireStepExplainFormatOne:last-of-type {
  margin-bottom: 0px;
}
.NaireStepExplainFormatOne strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.NaireStepExplainFormatOne span {
  display: block;
  font-weight: 400;
}

@media (max-width: 1365px) {
  
  .Naire {
    width: 75%;
  }
  .NaireTitle {
    font-size: 20px;
  }
  .NaireStepMidashi {
    font-size: 16px;
  }
  .NaireStepExplain {
    font-size: 14px;
  }
  .NaireStepExplainSupplement {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {

  .Naire {
    width: 100%;
    padding: 25px 25px 25px 25px;
  }
  .NaireTitle {
    font-size: 18px;
  }
  .NaireStepMidashi {
    font-size: 16px;
  }
  .NaireStepExplain {
    font-size: 13px;
  }
  .NaireStepExplainSupplement {
    font-size: 12px;
  }
  .NaireStepExplainFormatOne {
    font-size: 12px;
  }
}

/*================================================
Buy Object (Animation Effect JS)
================================================*/

.js-buy-section .js-buy-name,
.js-buy-section .js-buy-text,
.js-buy-section .js-buy-price,
.js-buy-section .js-buy-attention {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-buy-section .js-buy-photo-image,
.js-buy-section .js-buy-button {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.js-buy-section .js-buy-photo-image.is-animated,
.js-buy-section .js-buy-button.is-animated {
  opacity: 1;
  transform: scale(1);
}
.js-buy-section .js-buy-name.is-animated,
.js-buy-section .js-buy-text.is-animated,
.js-buy-section .js-buy-price.is-animated,
.js-buy-section .js-buy-attention.is-animated {
  opacity: 1;
  transform: translateY(0);
}

/*================================================
Feature
================================================*/

.FeatureOneUpper {
  clear: both;
  padding: 100px 0px 50px 0px;
  background-color: #FFFFFF;
}
.FeatureOneUnder {
  clear: both;
  padding: 50px 0px 100px 0px;
  background-color: #FFFFFF;
}

.FeatureOneAbout { float: right; width: 50%; box-sizing: border-box; }
.FeatureOnePhoto { float: left;  width: 50%; box-sizing: border-box; }
.FeatureOneHuman { float: left;  width: 50%; box-sizing: border-box; }
.FeatureOneSlice { float: left;  width: 50%; box-sizing: border-box; }

.FeatureOneAboutInner { width: 50%; margin: 0px 45% 0px  5%; box-sizing: border-box; padding-top: 100px; }
.FeatureOnePhotoInner { width: 50%; margin: 0px  5% 0px 45%; box-sizing: border-box; }
.FeatureOneHumanInner { width: 50%; margin: 0px  5% 0px 45%; box-sizing: border-box; padding-top:  50px; }
.FeatureOneSliceInner { width: 50%; margin: 0px 45% 0px  5%; box-sizing: border-box; }

.FeatureOneAboutTitle {
  margin-bottom: 15px;
  line-height: 1.25;
  font-size: 18px;
  font-weight: 700;
}
.FeatureOneAboutText {
  margin-bottom: 0px;
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 1.50;
  font-size: 16px;
  font-weight: 400;
}
.FeatureOneHumanTitle {
  margin-bottom: 15px;
  line-height: 1.25;
  font-size: 18px;
  font-weight: 700;
}
.FeatureOneHumanText {
  margin-bottom: 25px;
  line-height: 1.50;
  font-size: 16px;
  font-weight: 400;
}
.FeatureOneHumanMembers {
  margin-bottom: 0px;
}
.FeatureOneHumanMembers span {
  display: block;
  margin-bottom: 20px;
  padding: 10px;
  border: 1px #000000 solid;
  text-align: center;
  line-height: 1.25;
  font-size: 18px;
  font-weight: 400;
}
.FeatureOneHumanMembers strong {
  display: block;
  text-align: center;
  line-height: 1.75;
  font-size: 18px;
  font-weight: 700;
}
.FeatureOneSliceCard {
  position: relative;
  float: left;
  width: 50%;
}
.FeatureOneSliceCard p {
  position: absolute;
  bottom: 5px;
  right: 5px;
  margin-bottom: 0px;
  line-height: 1.25;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.75);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
}
@media (max-width: 1365px) {

  .FeatureOneUpper {
    padding: 75px 0px 25px 0px;
  }
  .FeatureOneUnder {
    padding: 25px 0px 75px 0px;
  }

  .FeatureOneAboutInner { width: 70%; margin: 0px 25% 0px  5%; padding-top: 100px; }
  .FeatureOnePhotoInner { width: 70%; margin: 0px  5% 0px 25%; }
  .FeatureOneHumanInner { width: 70%; margin: 0px  5% 0px 25%; padding-top:  25px; }
  .FeatureOneSliceInner { width: 70%; margin: 0px 25% 0px  5%; }

  .FeatureOneAboutTitle {
    font-size: 16px;
  }
  .FeatureOneAboutText {
    font-size: 15px;
  }
  .FeatureOneHumanTitle {
    font-size: 16px;
  }
  .FeatureOneHumanText {
    font-size: 15px;
  }
  .FeatureOneHumanMembers span {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
  }
  .FeatureOneHumanMembers strong {
    font-size: 16px;
  }
  .FeatureOneSliceCard p {
    font-size: 15px;
  }
}
@media (max-width: 1023px) {

  .FeatureOneUpper {
    padding: 50px 0px 25px 0px;
  }
  .FeatureOneUnder {
    padding: 25px 0px 50px 0px;
  }

  .FeatureOneAbout { float: none; width: 100%; }
  .FeatureOnePhoto { float: none; width: 100%; }
  .FeatureOneHuman { float: none; width: 100%; }
  .FeatureOneSlice { float: none; width: 100%; }

  .FeatureOneAboutInner { width: 80%; margin: 0px auto 25px auto; padding-top: 0px; }
  .FeatureOnePhotoInner { width: 80%; margin: 0px auto 0px auto; }
  .FeatureOneHumanInner { width: 80%; margin: 0px auto 25px auto; padding-top: 0px; }
  .FeatureOneSliceInner { width: 80%; margin: 0px auto 0px auto; }
  
  .FeatureOneAboutTitle {
    font-size: 15px;
  }
  .FeatureOneAboutText {
    font-size: 14px;
  }
  .FeatureOneHumanTitle {
    font-size: 15px;
  }
  .FeatureOneHumanText {
    font-size: 14px;
  }
  .FeatureOneHumanMembers span {
    padding: 10px;
    font-size: 15px;
  }
  .FeatureOneHumanMembers strong {
    font-size: 15px;
  }
  .FeatureOneSliceCard p {
    font-size: 12px;
  }
}

/*================================================
FeatureOneSliceCard (Animation)
================================================*/

.FeatureOneSliceCard {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.75s ease-out, transform 0.75s ease-out;
}
.FeatureOneSliceCard.is-animated {
  opacity: 1;
  transform: translateX(0);
}

/*================================================
FeatureScroll & PopupWindow
================================================*/

.FeatureScroll {
  position: relative;
  background-color: #000000;
}
.FeatureScrollAttention {
  position: absolute;
  top: 10px;
  right: 10px;
  margin-bottom: 0px;
  line-height: 1.25;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
}
.PopupWindow {
  position: relative;
}
.PopupWindow img {
  opacity: 0.75;
}
.PopupWindow:hover {
  cursor: pointer;
}
.PopupWindow img:hover {
  opacity: 1.00;
  transition: all 0.3s ease;
}
.PopupWindow p {
  position: absolute;
  bottom: 10px;
  right: 15px;
  margin-bottom: 0px;
}
.PopupWindow span {
  margin-right: 5px;
  line-height: 1.25;
  letter-spacing: -3px;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 400;
}
.PopupWindow i {
  line-height: 1.25;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
}
.PopupWindow strong {
  line-height: 1.25;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 1365px) {

  .FeatureScrollAttention {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {

  .FeatureScrollAttention {
    position: absolute;
    top: -28px;
    right: 10px;
    color: #333333;
    font-size: 12px;
  }
  .PopupWindow span {
    display: none !important;
  }
  .PopupWindow i {
    display: none !important;
  }
  .PopupWindow strong {
    font-size: 12px;
  }
}

/*================================================
FeatureScroll & PopupWindow (Animation Effect JS)
================================================*/

#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#popup-content {
  display: flex;
  position: relative;
  max-width: 90%;
  max-height: 90%;
  padding: 20px;
  border-radius: 8px;
  background-color: #FFFFFF;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
#popup-image {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  height: auto;
}
#popup-text {
  margin-top: 10px;
  text-align: center;
  color: #333333;
  font-size: 1.2em;
  font-weight: bold;
}
#popup-close-btn {
  position: absolute;
  top: -50px;
  right: 25px;
  color: #999999;
  font-size: 2em;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  transition: color 0.2s ease-in-out;
}
#popup-close-btn:hover {
  color: #CCCCCC;
}

/*================================================
Ended
================================================*/

.EndLabel {
  display: none;
  padding: 20px 0px;
  text-align: center;
  background-color: #BF0000;
}
.EndLabel p {
  margin-bottom: 0px;
  line-height: 1.50;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
}

@media (max-width: 1365px) {

  .EndLabel {
    padding: 15px 0px;
  }
  .EndLabel p {
    font-size: 16px;
  }
}

@media (max-width: 1023px) {

  .EndLabel {
    padding: 10px 0px;
  }
  .EndLabel p {
    font-size: 14px;
  }
}

/*================================================
Loading
================================================*/

#loading-screen {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out;
}
.loading-spinner {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border: 4px solid #EEEEEE;
  border-top: 4px solid #142F83;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.loading-text {
  margin-bottom: 10px;
  color: #333333;
  font-size: 18px;
}
.loading-meter-container {
  overflow: hidden;
  width: 200px;
  height: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
  background-color: #EEEEEE;
}
.loading-meter-fill {
  width: 0%;
  height: 100%;
  background-color: #142F83;
  transition: width 0.1s linear;
}
.loading-percentage {
  color: #333333;
  font-size: 14px;
}

/*================================================
PagetopFix
================================================*/

html {
  scroll-behavior: smooth;
}
.PagetopFix {
  position: fixed;
  z-index: 9999;
  width: 64px;
  height: 64px;
  right: 40px;
  bottom: 20px;
}
.PagetopFix a img {
  width: 64px;
  height: 64px;
}
.PagetopFix a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s ease;
}
.PagetopFix a:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}

@media (max-width: 1023px) {

  .PagetopFix {
    bottom: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
  }
  .PagetopFix a img {
    width: 48px;
    height: 48px;
  }
}

/*================================================
Arrow
================================================*/

.ArrowButton {
  clear: both;
  display: block;
  width: 100%;
  padding: 20px 0px;
  border-bottom: 1px #FFFFFF solid;
  background-color: #000000;
  box-sizing: border-box;
}
.ArrowButton span {
  display: none;
}
.ArrowButton:hover {
  transition: all 0.3s ease;
  background-color: #333333;
}
.ArrowImage {
  position: relative;
  display: block;
  margin-bottom: 0px;
}
.ArrowImage::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  border: 0px;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (max-width: 1023px) {

  .ArrowButton {
    margin-top: 0px;
  }
}

/*================================================
Accordion
================================================*/

.AccordionSwitch {
  cursor: pointer;
}
.AccordionFold {
  display: none;
}

/*================================================
List Point
================================================*/

.Pochi {
  width: 90%;
  list-style-type: disc;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 1em;
  padding-left: 1em;
  text-indent: -0.5em;
}
.Square {
  list-style-type: square;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 1em;
  padding-left: 1em;
  text-indent: -0.5em;
}
.Kome {
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 1em;
  text-indent: -1em;
}
.Kome:before {
  content: "\203B";
}
.Bikkuri {
	margin-right: 5px;
  padding: 3px 8px !important;
  border: 2px #000000 solid;
  border-radius: 30px;
  background-color: #FFCC00;
  color: #000000 !important;
}
.NewWindow {
  line-height: 2.00;
}
.NewWindow img {
  width: 18px !important;
  height: 18px !important;
  margin-right: 5px;
  vertical-align: middle;
}

/*================================================
FadeinUp
================================================*/

#main { overflow-x: hidden; }
.HeadlineUp { animation: SlideInUp 1.6s; } @keyframes SlideInUp { 0% { opacity: 0; transform: translateY(64px); } 100% { opacity: 1; transform: translateY(0); } }
.HeadlineDown { animation: SlideInDown 1.6s; } @keyframes SlideInDown { 0% { opacity: 0; transform: translateY(-16px); } 100% { opacity: 1; transform: translateY(0); } }
.HeadlineLeft { animation: SlideInLeft 1.6s; } @keyframes SlideInLeft { 0% { opacity: 0; transform: translateX(-16px); } 100% { opacity: 1; transform: translateX(0); } }
.HeadlineRight { animation: SlideInRight 1.6s; } @keyframes SlideInRight { 0% { opacity: 0; transform: translateX(16px); } 100% { opacity: 1; transform: translateX(0); } }
.HeadlineZoom { animation: SlideInZoom 2.0s; } @keyframes SlideInZoom { 0% { opacity: 0; transform: scale(0.85); } 100% { opacity: 1; transform: scale(1.0); } }
.HeadlineLag { animation: SlideInLag 2.4s; } @keyframes SlideInLag { 0% { opacity: 0; transform: translateX(-16px); } 100% { opacity: 1; transform: translateX(0); } }

.FadeinUp {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 750ms;
}
.FadeinDown {
  opacity : 0;
  transform : translate(0, -10px);
  transition : all 750ms;
}
.FadeinLeft {
  opacity : 0;
  transform : translate(-50px, 0);
  transition : all 1000ms;
}
.FadeinRight {
  opacity : 0;
  transform : translate(100px, 0);
  transition : all 1000ms;
}
.FadeinZoomBig {
  opacity : 0;
  transform: scale(0.85,0.85);
  transition : all 750ms;
}
.FadeinZoomSmall {
  opacity : 0;
  transform: scale(1.15,1.15);
  transition : all 750ms;
}
.FadeinUp.Scrollin,
.FadeinDown.Scrollin,
.FadeinLeft.Scrollin,
.FadeinRight.Scrollin {
  opacity : 1;
  transform: scale(1.0,1.0);
  transform : translate(0, 0);
}
.FadeinZoomBig.Scrollin,
.FadeinZoomSmall.Scrollin {
  opacity : 1;
  transform: scale(1.0,1.0);
}

/*================================================
Parallel
================================================*/

.Parallel {
  width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*================================================
clearfix
================================================*/

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}

/*================================================
display on / off
================================================*/

.pc-br {
  display: block;
}
.sp-br {
  display: none;
}
.js-lazy { min-height: auto !important; }

@media (max-width: 1023px) {

  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
}
