@charset "UTF-8";
html {
  overflow-x: hidden;
}

img {
  height: auto;
}

body {
  padding: 0;
}

/* メインビジュアル */
.main-visual {
  padding: 0;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
}
@media only screen and (max-width: 768px) {
  .main-visual {
    height: 100vh;
  }
}
.main-visual .logo-main {
  position: absolute;
  opacity: 0;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 13vw;
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
}
.main-visual .logo-main.active {
  opacity: 1;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .main-visual .logo-main {
    width: 34vw;
  }
}
.main-visual .text {
  position: absolute;
  color: #fff;
  width: 94%;
  bottom: 5%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-transition: all 2s;
  transition: all 2s;
  z-index: 2;
  text-align: left;
  line-height: 1.75;
}
.main-visual .text p {
  font-size: 1.8vw;
}
@media only screen and (max-width: 768px) {
  .main-visual .text p {
    font-size: 1.6rem;
  }
}
.main-visual .text p.heading {
  font-size: 3.9vw;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .main-visual .text p.heading {
    font-size: 2.9rem;
    font-weight: 700;
  }
}

.video-background {
  height: 100vh;
  width: 100vw;
  position: fixed;
  padding: 0;
  top: 0;
  overflow: hidden;
}
.video-background video {
  top: 0;
  left: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
/*  タイトル */
h2 {
  font-size: 1.5rem;
  line-height: 1.1;
  margin-bottom: 0.25em;
  color: #38383a;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1rem;
  }
}
h2 span {
  display: block;
  font-size: 3.4rem;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 768px) {
  h2 span {
    font-size: 2.2rem;
  }
}

/**
 * 1. 特徴 
 */
.feature-section {
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
  padding: 100px 0 105px;
}
@media only screen and (max-width: 768px) {
  .feature-section {
    padding: 35px 0 25px;
  }
}
.feature-section .main-message {
  font-weight: 500;
  margin: 50px auto 20px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .feature-section .main-message {
    margin: 25px auto 20px;
  }
}
.feature-section .main-message h3 {
  color: #68111E;
  font-size: 2.7rem;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.75;
}
@media only screen and (max-width: 768px) {
  .feature-section .main-message h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}
.feature-section .main-message p {
  font-size: 1.4rem;
  line-height: 2;
  color: #38383a;
  margin: 10px auto;
}
@media only screen and (max-width: 768px) {
  .feature-section .main-message p {
    font-size: 1.2rem;
    margin: 5px auto;
  }
}
.feature-section .main-message p span {
  font-weight: bold;
  color: #191919;
}
.feature-section .main-message p.strong {
  color: #191919;
  font-weight: bold;
  font-size: 1.4rem;
  margin: 10px auto 5px;
}
@media only screen and (max-width: 768px) {
  .feature-section .main-message p.strong {
    font-size: 1.2rem;
    margin: 10px auto 5px;
  }
}
.feature-section .main-message span {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.feature-section .main-message span.m2 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

/**
 * 2. 制作実績
 */
/**
 * 3. 事業内容
 */
.service-section {
  background: #fff;
}
.service-section .service-content {
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content {
    margin-top: 40px;
  }
}
.service-section .service-content ul li {
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid rgba(24, 24, 25, 0.2);
}
.service-section .service-content ul li .left-content {
  width: 20%;
  padding: 10px 0;
  font-size: 1.25vw;
  line-height: 1.875vw;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .left-content {
    width: 10%;
    font-size: 2.4154589372vw;
  }
}
.service-section .service-content ul li .right-content {
  text-align: left;
  width: 80%;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .right-content {
    width: 90%;
  }
}
.service-section .service-content ul li .right-content .inner-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.service-section .service-content ul li .right-content .inner-content .text-content {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .right-content .inner-content .text-content {
    width: 60%;
  }
}
.service-section .service-content ul li .right-content .inner-content .thumb-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .right-content .inner-content .thumb-content {
    width: 40%;
  }
}
.service-section .service-content ul li .right-content .inner-content .thumb-content .image {
  width: 50%;
  margin-right: 10px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .right-content .inner-content .thumb-content .image {
    width: 100%;
    margin-right: 5px;
  }
}
.service-section .service-content ul li .right-content p {
  font-size: 1.4rem;
}
.service-section .service-content ul li .right-content p.heading {
  font-size: 2.8rem;
}
.service-section .service-content ul li .right-content a {
  display: block;
  text-align: right;
  margin-left: auto;
  color: #68111E;
  margin-top: 0.25em;
}
.service-section .service-content ul li .right-content a span {
  color: #68111E;
}
@media only screen and (max-width: 768px) {
  .service-section .service-content ul li .right-content a {
    font-size: 1.1rem;
  }
}
.service-section .service-content ul li:last-child {
  border-bottom: 1px solid rgba(24, 24, 25, 0.2);
}

/**
 * 4. 納入企業実績
 */
.company-section {
  background: #fff;
}
.company-section h2 {
  color: #191919;
}
.company-section ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: 81%;
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  .company-section ul {
    padding: 0 5px;
  }
}
.company-section ul li {
  width: 32%;
  margin-right: 2%;
  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;
}
@media only screen and (max-width: 768px) {
  .company-section ul li {
    margin-top: 30px;
  }
}
.company-section ul li:nth-child(3n) {
  margin-right: 0;
}
.company-section ul li:nth-child(n+4) {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li:nth-child(n+4) {
    margin-top: 30px;
  }
}
.company-section ul li img.via {
  width: 150px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.via {
    width: 55px;
  }
}
.company-section ul li img.sekisui {
  width: 180px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.sekisui {
    width: 70px;
  }
}
.company-section ul li img.shinjuku {
  width: 180px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.shinjuku {
    width: 74px;
  }
}
.company-section ul li img.shimonaka {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.shimonaka {
    width: 103px;
  }
}
.company-section ul li img.vook {
  width: 110px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.vook {
    width: 47px;
  }
}
.company-section ul li img.eco {
  width: 209px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.eco {
    width: 105px;
  }
}
.company-section ul li img.sanwa {
  width: 240px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.sanwa {
    width: 105px;
  }
}
.company-section ul li img.loop {
  width: 160px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.loop {
    width: 80px;
  }
}
.company-section ul li img.plusmotion {
  width: 180px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.plusmotion {
    width: 90px;
  }
}
.company-section ul li img.steel {
  width: 130px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.steel {
    width: 60px;
  }
}
.company-section ul li img.shimizu {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.shimizu {
    width: 91px;
  }
}
.company-section ul li img.city {
  width: 122px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.city {
    width: 60px;
  }
}
.company-section ul li img.zip {
  width: 148px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.zip {
    width: 81px;
  }
}
.company-section ul li img.daigaku {
  width: 160px;
}
@media only screen and (max-width: 768px) {
  .company-section ul li img.daigaku {
    width: 80px;
  }
}

/**
 * 4. お問合せ
 */
.contact-section {
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .contact-section {
    padding-top: 70px;
  }
}
.contact-section .form-content {
  max-width: 900px;
  width: 100%;
  margin: 20px auto 0;
}
@media only screen and (max-width: 768px) {
  .contact-section .form-content {
    padding: 0 5px;
  }
}
.contact-section form .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
}
.contact-section form .item p {
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .contact-section form .item p {
    font-size: 1.2rem;
  }
}
.contact-section form .item p.heading {
  width: 150px;
  font-weight: 500;
  color: #191919;
}
.contact-section form .item input {
  background: #fff;
  border: 1px solid #38383a;
  width: 100%;
  text-align: left;
  padding: 5px;
}
.contact-section form .item textarea {
  background: #fff;
  border: 1px solid #38383a;
  text-align: left;
  padding: 5px;
  width: 100%;
  resize: none;
  height: 100px;
}
.contact-section form input[type=submit] {
  background: #d2d2d2;
  color: #191919;
  padding: 3px 30px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  font-weight: 500;
  display: block;
  margin: auto;
  font-weight: bold;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .contact-section form input[type=submit] {
    font-size: 1.4rem;
  }
}
.contact-section form input[type=submit]:hover {
  opacity: 0.7;
}
.contact-section .wpcf7 form.invalid .wpcf7-response-output {
  color: #fff;
}
.contact-section .contact-mail {
  color: #191919;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .contact-section .contact-mail {
    font-size: 1.2rem;
  }
}
.contact-section .reCAPTCHA {
  margin-bottom: 3em;
  margin-top: -3em;
  font-size: 1.2rem;
  color: #acacac;
}
@media only screen and (max-width: 768px) {
  .contact-section .reCAPTCHA {
    font-size: 1rem;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.intrioduction-section {
  background: #fff;
  padding: 80px 0 10px;
  margin-top: -30px;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section {
    padding: 50px 0 20px;
    margin-top: 0;
  }
}
.intrioduction-section h3 {
  text-align: left;
  color: #191919;
  margin: 50px auto 30px;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section h3 {
    font-size: 1.9rem;
    line-height: 1.5;
  }
}
.intrioduction-section h3 span {
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section h3 span {
    font-size: 2.3rem;
  }
}
.intrioduction-section p {
  text-align: left;
  color: #38383a;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section p {
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.intrioduction-section p.intro {
  line-height: 1.75;
}
.intrioduction-section .person {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 90px auto 0;
  width: 600px;
  max-width: 100%;
}
.intrioduction-section .person .image {
  width: 200px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section .person .image {
    width: 300px;
  }
}
.intrioduction-section .person .text {
  text-align: left;
}
.intrioduction-section .person .text p {
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .intrioduction-section .person .text p {
    font-size: 1rem;
  }
}
.intrioduction-section .person .text p.detail {
  margin-top: 1em;
}
.intrioduction-section .person .text p.name {
  font-size: 1.7rem;
  margin-top: -0.25em;
}

.strong-list {
  background: #fcf3e7;
  padding: 10px 10px 10px;
  width: 80%;
  max-width: 100%;
  margin: auto;
  border-radius: 10px;
  margin: 30px auto 0;
}
@media only screen and (max-width: 768px) {
  .strong-list {
    width: 100%;
    padding: 10px 5px;
  }
}
.strong-list h3 {
  font-size: 2rem;
  text-align: center;
  margin: 0 auto 10px;
}
@media only screen and (max-width: 768px) {
  .strong-list h3 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.strong-list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.strong-list ul li {
  text-align: center;
  margin: 0 20px;
}
@media only screen and (max-width: 768px) {
  .strong-list ul li {
    margin: 0 10px;
  }
}
.strong-list ul li .image {
  width: 100px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .strong-list ul li .image {
    width: 65px;
  }
}
.strong-list ul li p.heading {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .strong-list ul li p.heading {
    font-size: 1.2rem;
  }
}

.strong-section {
  position: relative;
  background: #ffffff;
  color: #191919;
  padding: 10px 0 20px;
}
@media only screen and (max-width: 768px) {
  .strong-section {
    padding: 10px 0 20px;
  }
}
.strong-section h2 {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #191919;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .strong-section h2 {
    font-size: 2rem;
  }
}
.strong-section h2 span {
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 0.25em;
  color: #38383a;
}
@media only screen and (max-width: 768px) {
  .strong-section h2 span {
    font-size: 1.1rem;
  }
}
.strong-section ul.link-list {
  margin-bottom: 3em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list {
    margin-bottom: 10px;
  }
}
.strong-section ul.link-list li {
  position: relative;
  width: calc(50% - 1px);
  height: 130px;
  overflow: hidden;
  background: #000;
  margin-top: 1px;
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li {
    height: 100px;
  }
}
.strong-section ul.link-list li .num {
  position: absolute;
  top: -2px;
  left: 4px;
  font-size: 4.6rem;
  color: #fff;
  opacity: 0.6;
  line-height: 1;
  font-weight: 100;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .num {
    font-size: 3.6rem;
  }
}
.strong-section ul.link-list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.strong-section ul.link-list li .text {
  z-index: 2;
  color: #fff;
  width: 100%;
  text-align: left;
  margin-top: 9px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .text {
    margin-top: 5px;
  }
}
.strong-section ul.link-list li .text p {
  font-size: 2.8rem;
  line-height: 1;
  padding-left: 40px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .text p {
    font-size: 2.4rem;
    padding-left: 28px;
  }
}
.strong-section ul.link-list li .text p.item {
  position: absolute;
  width: 100%;
  right: 50%;
  top: 47%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  font-size: 1.8rem;
  margin-top: 10px;
  padding-left: 5px;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .text p.item {
    font-size: 1.2rem;
    margin-top: 10px;
  }
}
.strong-section ul.link-list li .text p.item span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .text p.item span {
    font-size: 1rem;
  }
}
.strong-section ul.link-list li .text p span {
  color: #fff;
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.link-list li .text p span {
    font-size: 1.5rem;
  }
}
.strong-section ul.link-list li video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  right: 50%;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.strong-section ul.link-list li img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  right: 50%;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-animation: animationZoom1 5s ease-in-out forwards;
          animation: animationZoom1 5s ease-in-out forwards;
}
@-webkit-keyframes animationZoom1 {
  100% {
    -webkit-transform: translate(50%, -50%) scale(1.1);
            transform: translate(50%, -50%) scale(1.1);
  }
}
@keyframes animationZoom1 {
  100% {
    -webkit-transform: translate(50%, -50%) scale(1.1);
            transform: translate(50%, -50%) scale(1.1);
  }
}
.strong-section ul.link-list li .dli-chevron-round-right {
  position: absolute;
  bottom: 10px;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  -webkit-transform: translateX(-25%) rotate(135deg);
          transform: translateX(-25%) rotate(135deg);
}
.strong-section ul.link-list li .dli-chevron-round-right::before,
.strong-section ul.link-list li .dli-chevron-round-right::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.strong-section ul.link-list li .dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.strong-section ul.link-list li .dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
.strong-section ul.list li {
  position: relative;
  padding: 20px 10px 40px;
  margin-top: 70px;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li {
    padding: 20px 10px 30px;
    margin-top: 24px;
  }
}
.strong-section ul.list li:first-child {
  margin-top: 20px;
}
.strong-section ul.list li .list-heading {
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  padding: 4px 4px 3px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.strong-section ul.list li .list-heading .left-content {
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .list-heading .left-content {
    margin-right: 20px;
  }
}
.strong-section ul.list li .list-heading .left-content .num {
  display: block;
  font-size: 5.7rem;
  color: #626262;
  letter-spacing: -0.05em;
  line-height: 1;
  position: relative;
  bottom: 6px;
}
.strong-section ul.list li .list-heading .right-content {
  text-align: left;
}
.strong-section ul.list li .list-heading .right-content h3 {
  position: relative;
  font-size: 3.2rem;
  line-height: 1.1;
  color: #191919;
  text-align: left;
  font-weight: bold;
  z-index: 2;
  font-weight: normal;
  text-align: left;
  margin-bottom: 1px;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .list-heading .right-content h3 {
    font-size: 3rem;
    margin-right: -4vw;
  }
}
.strong-section ul.list li .list-heading .right-content h3 span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .list-heading .right-content h3 span {
    font-size: 1.4rem;
  }
}
.strong-section ul.list li .list-heading .right-content p {
  font-size: 1.6rem;
  color: #38383a;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .list-heading .right-content p {
    font-size: 1.4rem;
  }
}
.strong-section ul.list li .video {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: black;
}
.strong-section ul.list li .video video {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  top: 0;
  right: 0;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}
.strong-section ul.list li .image {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}
.strong-section ul.list li .image img {
  opacity: 0.25;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 50%;
  right: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  -webkit-animation: animationZoom1 5s ease-in-out forwards;
          animation: animationZoom1 5s ease-in-out forwards;
}
.strong-section ul.list li .text {
  color: #fff;
  margin-top: 0.5em;
}
.strong-section ul.list li .text p {
  font-size: 2rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .text p {
    font-size: 1.4rem;
  }
}
.strong-section ul.list li .text p.detail {
  font-size: 1.4rem;
  margin-top: 0.5em;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .text p.detail {
    font-size: 1rem;
  }
}
.strong-section ul.list li .text p.detail span {
  padding-top: 0.42em;
  display: inline-block;
  font-size: 1.6rem;
  margin-left: -0.25em;
}
@media only screen and (max-width: 768px) {
  .strong-section ul.list li .text p.detail span {
    font-size: 1.2rem;
  }
}

.corporate-section {
  background: #fff;
}
.corporate-section .logo {
  width: 120px;
  margin: 50px auto 30px;
}
@media only screen and (max-width: 768px) {
  .corporate-section .logo {
    width: 80px;
    margin: 35px auto 34px;
  }
}
.corporate-section .mission {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .corporate-section .mission {
    margin-bottom: 30px;
  }
}
.corporate-section .mission p {
  color: #191919;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .corporate-section .mission p {
    font-size: 1.8rem;
  }
}
.corporate-section .mission p.heading {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .corporate-section .mission p.heading {
    font-size: 1.1rem;
  }
}
.corporate-section .mission a {
  position: relative;
  border: 1px solid #484848;
  display: block;
  padding: 4px 14px;
  margin: 50px auto 10px;
  width: 120px;
  line-height: 1;
  font-size: 3.5vw;
  color: #484848;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .corporate-section .mission a {
    margin: 20px auto 10px;
    padding: 2px 8px;
  }
}
.corporate-section .mission a span {
  position: absolute;
  bottom: 31%;
  display: inline-block;
  vertical-align: middle;
  color: #484848;
  right: 6px;
  line-height: 1;
  width: 6px;
  height: 6px;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.corporate-section .mission a span::before, .corporate-section .mission a span::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.corporate-section .mission a span::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.corporate-section .mission a span::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
@media only screen and (max-width: 768px) {
  .corporate-section .mission a {
    font-size: 1.2rem;
  }
}
.corporate-section .detail {
  font-size: 1.4rem;
  margin: 10px auto 40px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .corporate-section .detail {
    font-size: 1.2rem;
  }
}
.corporate-section .detail p {
  line-height: 1.5;
}
.corporate-section .prof {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .corporate-section .prof {
    width: 100%;
    margin-top: 30px;
  }
}
.corporate-section .prof .image-content {
  width: 120px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .corporate-section .prof .image-content {
    width: 80px;
    margin-right: 10px;
  }
}
.corporate-section .prof .image-content img {
  width: 100%;
}
.corporate-section .prof .text-content {
  width: calc(100% - 100px);
}
.corporate-section .prof .text-content .name {
  margin-bottom: 10px;
}
.corporate-section .prof .text-content .name p {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .corporate-section .prof .text-content .name p {
    font-size: 1.4rem;
  }
}
.corporate-section .prof .text-content .name p span {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .corporate-section .prof .text-content .name p span {
    font-size: 1rem;
  }
}
.corporate-section .prof .text-content p {
  text-align: left;
  font-size: 1.2rem;
}
@media only screen and (max-width: 768px) {
  .corporate-section .prof .text-content p {
    font-size: 1rem;
  }
}

.lower-link ul.content-link li {
  position: relative;
  width: 100%;
  border: 1px solid #38383a;
  text-align: center;
  background: #000;
  overflow: hidden;
}
.lower-link ul.content-link li img,
.lower-link ul.content-link li video {
  position: absolute;
  opacity: 0.5;
  top: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.lower-link ul.content-link li video {
  opacity: 0.6;
}
.lower-link ul.content-link li a {
  display: block;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .lower-link ul.content-link li a {
    padding: 20px 0;
  }
}
.lower-link ul.content-link li a h2 {
  position: relative;
  text-align: center;
  line-height: 0.75;
  color: #fff;
}
.lower-link ul.content-link li a h2 span {
  color: #fff;
}
.lower-link ul.content-link li span.arrow {
  position: absolute;
  top: 50%;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  right: 16px;
  line-height: 1;
  width: 10px;
  height: 10px;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.lower-link ul.content-link li span.arrow::before, .lower-link ul.content-link li span.arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.lower-link ul.content-link li span.arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}
.lower-link ul.content-link li span.arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
}

.conclusion {
  margin-top: 80px;
  background: #e0ccb1;
  border-radius: 10px;
  padding: 20px;
}
@media only screen and (max-width: 768px) {
  .conclusion {
    margin-top: 50px;
    padding: 15px;
  }
}
.conclusion p {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
.conclusion p span {
  color: #68111e;
  font-weight: bold;
  font-size: 2.2rem;
}
@media only screen and (max-width: 768px) {
  .conclusion p span {
    font-size: 1.7rem;
  }
}
@media only screen and (max-width: 768px) {
  .conclusion p {
    line-height: 1.5;
    font-size: 1.5rem;
  }
}
.conclusion a.flow-link {
  position: relative;
  border: 1px solid #484848;
  display: block;
  padding: 4px 14px;
  margin: 30px auto 10px;
  width: 400px;
  max-width: 100%;
  line-height: 1;
  font-size: 3.5vw;
  color: #484848;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .conclusion a.flow-link {
    margin: 20px auto 10px;
    padding: 2px 8px;
  }
}
.conclusion a.flow-link span {
  position: absolute;
  bottom: 31%;
  display: inline-block;
  vertical-align: middle;
  color: #484848;
  right: 6px;
  line-height: 1;
  width: 6px;
  height: 6px;
  -webkit-transform: translateX(-25%) rotate(45deg);
          transform: translateX(-25%) rotate(45deg);
}
.conclusion a.flow-link span::before, .conclusion a.flow-link span::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.conclusion a.flow-link span::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.conclusion a.flow-link span::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
@media only screen and (max-width: 768px) {
  .conclusion a.flow-link {
    font-size: 1.2rem;
  }
}

.flow-section .adjust-width {
  padding: 0 0;
  width: 100%;
}
.flow-section h2 {
  margin-bottom: 1.25em;
}
@media only screen and (max-width: 768px) {
  .flow-section h2 {
    margin-bottom: 0.5em;
  }
}

.flow-chart h2 {
  font-size: 2.6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .flow-chart h2 {
    font-size: 2.2rem;
  }
}
.flow-chart .goal {
  position: relative;
  padding: 10px 20px;
  background: #cacaca;
  border-radius: 10px;
  text-align: center;
  margin: 10px auto;
}
.flow-chart .goal span {
  font-size: 1.2rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .flow-chart .goal span {
    font-size: 1rem;
  }
}
.flow-chart .goal p {
  line-height: 1.25;
  font-style: italic;
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .flow-chart .goal p {
    font-size: 2.4rem;
  }
}
.flow-chart .goal .icon-content {
  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: 30px auto 0;
  width: 360px;
  max-width: 100%;
}
.flow-chart .goal .icon-content .icon {
  position: relative;
  width: 70px;
  bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .flow-chart .goal .icon-content .icon {
    width: 70px;
  }
}
.flow-chart .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 20px auto 20px;
}
.flow-chart .js-arrow-down {
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translate(0, -15px);
          transform: translate(0, -15px);
  visibility: visible;
}
@media only screen and (max-width: 768px) {
  .flow-chart .js-arrow-down {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
}
.flow-chart .js-arrow-down.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.flow-chart ul.flow-answer {
  padding: 0 5px;
}
.flow-chart ul.flow-answer li {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li {
    margin-top: 40px;
  }
}
.flow-chart ul.flow-answer li:first-child {
  margin-top: 0;
}
.flow-chart ul.flow-answer li .question {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 20px;
}
.flow-chart ul.flow-answer li .question.first {
  background: #f3c9c9;
}
.flow-chart ul.flow-answer li .question.second {
  background: #ffc6a3;
}
.flow-chart ul.flow-answer li .question.third {
  background: #60abba;
}
.flow-chart ul.flow-answer li .question .icon {
  width: 100px;
  margin-right: 10px;
}
.flow-chart ul.flow-answer li .question .text {
  width: calc(100% - 100px);
  text-align: left;
}
.flow-chart ul.flow-answer li .question .text p {
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .question .text p {
    font-size: 1.6rem;
  }
}
.flow-chart ul.flow-answer li .question .text p.alf {
  font-size: 3.2rem;
  font-style: italic;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .question .text p.alf {
    font-size: 3.2rem;
  }
}
.flow-chart ul.flow-answer li .question .text p.alf span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .question .text p.alf span {
    font-size: 1.6rem;
  }
}
.flow-chart ul.flow-answer li .answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}
.flow-chart ul.flow-answer li .answer .answer-arrow {
  width: 32px;
  margin-top: -3px;
}
.flow-chart ul.flow-answer li .answer .text {
  width: calc(100% - 32px);
  border-radius: 20px;
  padding: 15px;
  background: #242424;
  color: #fff;
  margin-top: 20px;
}
.flow-chart ul.flow-answer li .answer .text .upper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flow-chart ul.flow-answer li .answer .text .upper .icon {
  width: 60px;
  margin-right: 10px;
}
.flow-chart ul.flow-answer li .answer .text .upper .heading {
  width: calc(100% - 60px);
}
.flow-chart ul.flow-answer li .answer .text p {
  font-size: 1.4rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .answer .text p {
    font-size: 1rem;
  }
}
.flow-chart ul.flow-answer li .answer .text p.heading {
  font-size: 1.6rem;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .answer .text p.heading {
    font-size: 1.9rem;
  }
}
.flow-chart ul.flow-answer li .answer .text p.heading span {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .answer .text p.heading span {
    font-size: 1.2rem;
  }
}
.flow-chart ul.flow-answer li .answer .text.js-fadein {
  -webkit-transform: translate(-15px, 0);
          transform: translate(-15px, 0);
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
@media only screen and (max-width: 768px) {
  .flow-chart ul.flow-answer li .answer .text.js-fadein {
    -webkit-transform: translate(-10px, 0);
            transform: translate(-10px, 0);
  }
}
.flow-chart ul.flow-answer li .answer .text.js-fadein.active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.result-section {
  background: #fff;
}
.result-section .swiper {
  margin: 30px auto 10px;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper {
    margin: 20px auto 10px;
  }
}
.result-section .swiper .swiper-button-prev,
.result-section .swiper .swiper-button-next {
  background: #fff;
  border-radius: 60px;
  width: 34px;
  height: 34px;
}
.result-section .swiper .p-arrowButtons {
  width: 100%;
  max-width: 44%;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper .p-arrowButtons {
    max-width: 100%;
    width: 100%;
  }
}
.result-section .swiper .p-videoCarousel__arrows {
  bottom: 50%;
}
.result-section .swiper .image {
  position: relative;
  overflow: hidden;
  height: 200px;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper .image {
    height: 130px;
  }
}
.result-section .swiper .image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper .image img.bottom {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.result-section .swiper a {
  display: block;
  background: #e8e8e8;
  border-radius: 10px;
  color: #191919;
  overflow: hidden;
  cursor: pointer;
}
.result-section .swiper a .text {
  padding: 10px;
}
.result-section .swiper a .text p.heading {
  padding: 0;
  font-size: 1.8rem;
}
.result-section .swiper a .text p.heading span {
  color: #191919;
  font-size: 1.6rem;
  display: block;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper a .text p.heading span {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .result-section .swiper a .text p.heading {
    font-size: 1.6rem;
  }
}
.result-section .swiper a .text p.item {
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper a .text p.item {
    font-size: 1.2rem;
  }
}
.result-section .swiper a .text ul li {
  color: #38383a;
  text-align: left;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper a .text ul li {
    font-size: 1.2rem;
  }
}
.result-section .swiper a .text p.link {
  text-align: right;
  text-decoration: underline;
  margin-top: 0;
  padding-top: 0;
  color: #38383a;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .result-section .swiper a .text p.link {
    font-size: 1.2rem;
  }
}
.result-section .popup-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 6;
}
.result-section .popup-wrapper .popup-inside {
  padding: 20px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 95%;
}
@media only screen and (min-width: 641px) {
  .result-section .popup-wrapper .popup-inside {
    max-width: 90%;
    width: 1000px;
  }
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside {
    padding: 20px 10px;
  }
}
.result-section .popup-wrapper .popup-inside p.modal-heading {
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside p.modal-heading {
    font-size: 1.6rem;
  }
}
.result-section .popup-wrapper .popup-inside p.modal-heading span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside p.modal-heading span {
    font-size: 1.2rem;
  }
}
.result-section .popup-wrapper .popup-inside p.introduction {
  text-align: center;
  margin: 1em auto 2.5em;
  font-size: 1.4rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside p.introduction {
    margin: 0.5em auto 1.5em;
    font-size: 1.2rem;
  }
}
.result-section .popup-wrapper .popup-inside .detail-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .detail-content {
    margin-top: 10px;
  }
}
.result-section .popup-wrapper .popup-inside .detail-content .image {
  width: 300px;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .detail-content .image {
    width: 160px;
    margin-right: 10px;
  }
}
.result-section .popup-wrapper .popup-inside .detail-content .text {
  width: calc(100% - 300px);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .detail-content .text {
    width: calc(100% - 160px);
  }
}
.result-section .popup-wrapper .popup-inside .detail-content .text p {
  font-size: 1.4rem;
}
.result-section .popup-wrapper .popup-inside .detail-content .text p.heading {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .detail-content .text p.heading {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .detail-content .text p {
    font-size: 1rem;
  }
}
.result-section .popup-wrapper .popup-inside .close {
  display: block;
  width: 100px;
  color: #fff;
  margin: auto;
  background: #333;
  padding: 2px 10px;
  margin-top: 30px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .result-section .popup-wrapper .popup-inside .close {
    font-size: 1rem;
    margin-top: 20px;
  }
}
.result-section .popup-wrapper .popup-inside .close:hover, .result-section .popup-wrapper .popup-inside .close:focus {
  background: #333;
}

.remodal {
  padding: 20px;
}
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 90%;
    width: 1000px;
  }
}
@media only screen and (max-width: 768px) {
  .remodal {
    padding: 10px;
  }
}
.remodal p.modal-heading {
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .remodal p.modal-heading {
    font-size: 1.6rem;
  }
}
.remodal p.modal-heading span {
  font-size: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .remodal p.modal-heading span {
    font-size: 1.2rem;
  }
}
.remodal p.introduction {
  text-align: center;
  margin: 1em auto 2.5em;
  font-size: 1.4rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .remodal p.introduction {
    margin: 0.5em auto 1.5em;
    font-size: 1.2rem;
  }
}
.remodal .detail-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .remodal .detail-content {
    margin-top: 10px;
  }
}
.remodal .detail-content .image {
  width: 300px;
  margin-right: 10px;
}
@media only screen and (max-width: 768px) {
  .remodal .detail-content .image {
    width: 160px;
    margin-right: 10px;
  }
}
.remodal .detail-content .text {
  width: calc(100% - 300px);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .remodal .detail-content .text {
    width: calc(100% - 160px);
  }
}
.remodal .detail-content .text p {
  font-size: 1.4rem;
}
.remodal .detail-content .text p.heading {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 768px) {
  .remodal .detail-content .text p.heading {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .remodal .detail-content .text p {
    font-size: 1rem;
  }
}
.remodal a {
  background: #333;
  padding: 2px 10px;
  margin-top: 30px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  font-size: 1.4rem;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .remodal a {
    font-size: 1rem;
    margin-top: 20px;
  }
}
.remodal a:hover, .remodal a:focus {
  background: #333;
}/*# sourceMappingURL=layout-home.css.map */