@charset "UTF-8";
* {
  box-sizing: border-box;
  line-height: 1;
}

html {
  line-height: 1.5;
}

body {
  color: #221815 !important;
}
body.menu-active {
  overflow: hidden;
}

a, button {
  transition-duration: 0.3s;
}
a:hover, button:hover {
  opacity: 0.75;
  transition: 1s;
}

.pc {
  display: block;
}
@media screen and (max-width: 480px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  img {
    width: 100%;
  }
}

.led {
  background: #eb5902;
}

.yellow {
  background: #ffb900;
}

#wrapper {
  width: 100%;
}
@media screen and (max-width: 480px) {
  #wrapper {
    margin: 0 !important;
    width: 100% !important;
  }
}

header .header-nav.pc {
  display: flex;
  width: 100%;
  height: 118px;
  background: #ffffff;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
@media screen and (max-width: 480px) {
  header .header-nav.pc {
    display: none;
  }
}
header .header-nav.pc h1 {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}
header .header-nav.pc nav {
  margin-left: auto;
  margin-right: 80px;
}
header .header-nav.pc nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  min-width: 880px;
  margin-left: 30px;
}
@media screen and (max-width: 480px) {
  header .header-nav.pc nav ul {
    min-width: auto;
    margin-left: 0;
  }
}
header .header-nav.pc nav ul li a {
  font-size: 22px;
  font-weight: bold;
  color: #f75c03;
}
header .header-nav.pc nav ul li a:hover {
  opacity: 0.5;
}
header .header-nav.pc.non-fixity {
  position: relative;
  background-color: #fff;
}
header .header-nav.pc.non-fixity.downMove {
  position: unset;
  width: 100%;
  animation: downAnime 0.5s forwards;
}
header .header-nav.pc.non-fixity.upMove {
  position: unset;
  width: 100%;
  animation: upAnime 0.5s forwards;
}
header .header-nav.pc.fixity {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999999;
}
header .header-nav.pc.fixity.downMove {
  position: fixed;
  width: 100%;
  animation: downAnime 0.5s forwards;
}
header .header-nav.pc.fixity.upMove {
  position: fixed;
  width: 100%;
  animation: upAnime 0.5s forwards;
}
@keyframes upAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes downAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header .header-nav.sp {
  display: none;
  background: #ffffff;
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
@media screen and (max-width: 480px) {
  header .header-nav.sp {
    display: block;
  }
}
header .header-nav.sp .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}
header .header-nav.sp .nav-menu h1 {
  height: 100%;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .header-nav.sp .nav-menu h1 img {
  width: 50%;
  height: auto;
}
header .header-nav.sp .nav-menu .menuBtn {
  position: relative;
  cursor: pointer;
  width: 48px;
  height: 28px;
  margin-right: 20px;
}
header .header-nav.sp .nav-menu .menuBtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  height: 4px;
  background: #f76812;
  width: 100%;
}
header .header-nav.sp .nav-menu .menuBtn span:nth-of-type(1) {
  top: 0;
}
header .header-nav.sp .nav-menu .menuBtn span:nth-of-type(2) {
  top: 12px;
}
header .header-nav.sp .nav-menu .menuBtn span:nth-of-type(3) {
  top: 24px;
}
header .header-nav.sp .nav-menu .menuBtn.active span:nth-of-type(1) {
  top: 8px;
  transform: translateY(6px) rotate(-43deg);
  width: 100%;
}
header .header-nav.sp .nav-menu .menuBtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
header .header-nav.sp .nav-menu .menuBtn.active span:nth-of-type(3) {
  top: 20px;
  transform: translateY(-6px) rotate(43deg);
  width: 100%;
}
header .header-nav.sp nav {
  display: none;
}
header .header-nav.sp nav.active {
  display: block;
  overflow: hidden;
}
header .header-nav.sp nav ul {
  padding: 40px;
  display: block;
  height: calc(100vh + 70px);
  background: linear-gradient(180deg, rgb(235, 89, 2) 0%, rgb(255, 185, 0) 100%);
}
header .header-nav.sp nav ul li {
  height: 50px;
  line-height: 50px;
  border-bottom: solid 1px #ffffff;
}
header .header-nav.sp nav ul li a {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  height: 100%;
}
header .header-nav.sp nav ul li a:hover {
  opacity: 0.5;
}
header .header-nav.sp nav .nav-banner {
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 175px;
  display: none;
}
header .header-nav.sp nav .nav-banner img {
  width: 50%;
  height: auto;
}
header .header-nav.sp.non-fixity {
  position: relative;
  background-color: #fff;
}
header .header-nav.sp.non-fixity.downMove {
  position: unset;
  width: 100%;
  animation: downAnime 0.5s forwards;
}
header .header-nav.sp.non-fixity.upMove {
  position: unset;
  width: 100%;
  animation: upAnime 0.5s forwards;
}
header .header-nav.sp.fixity {
  top: 0;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 999999;
}
header .header-nav.sp.fixity.downMove {
  position: fixed;
  width: 100%;
  animation: downAnime 0.5s forwards;
}
header .header-nav.sp.fixity.upMove {
  position: fixed;
  width: 100%;
  animation: upAnime 0.5s forwards;
}
@keyframes upAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes downAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header .mv-block {
  background: linear-gradient(-90deg, rgba(253, 223, 0, 0.79) 0%, rgba(253, 223, 0, 0.9) 50%, rgba(235, 89, 2, 0.9) 100%), url(../images/mv_pc2_bg.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: calc(100vh - 118px);
  animation: GradietionAnimation 30s ease infinite;
}
@media screen and (max-width: 1366px) {
  header .mv-block {
    min-height: auto;
    background-size: cover;
    height: auto;
    background: linear-gradient(-90deg, rgba(253, 223, 0, 0.79) 0%, rgba(253, 223, 0, 0.9) 50%, rgba(235, 89, 2, 0.9) 100%), url(../images/mv_sp2_bg.png);
    animation: GradietionAnimation 30s ease infinite;
  }
}
@keyframes GradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
header .mv-block .mv-image {
  width: 1000px;
  margin: 0 auto;
  height: 814px;
  padding: 80px 0 0;
  position: relative;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image {
    width: 100%;
    height: auto;
    padding: 30px 0 0;
  }
}
header .mv-block .mv-image .mv-top-image {
  position: relative;
  display: none;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-top-image {
    margin: 0 20px;
  }
}
header .mv-block .mv-image .cmp-banner.pc {
  position: absolute;
  top: 85px;
  right: 45px;
  display: block;
  display: none;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .cmp-banner.pc {
    display: none !important;
  }
}
header .mv-block .mv-image .cmp-banner.pc a {
  display: block;
}
header .mv-block .mv-image .cmp-banner.pc a:hover {
  opacity: 1;
}
header .mv-block .mv-image .cmp-banner.pc a img {
  transition-duration: 0.3s;
}
header .mv-block .mv-image .cmp-banner.pc a img:hover {
  scale: 1.05;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
header .mv-block .mv-image .mv-bottom-image {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  top: -60px;
  padding: 0 50px 0 15px;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-bottom-image {
    flex-flow: column;
    flex-direction: column-reverse;
    top: 0;
    padding: 10px 0 0;
    margin: 0 20px;
  }
}
header .mv-block .mv-image .mv-bottom-image .medal-icon {
  margin-bottom: 20px;
  display: none;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-bottom-image .medal-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px auto;
  }
  header .mv-block .mv-image .mv-bottom-image .medal-icon img {
    width: 75px;
    height: auto;
  }
}
header .mv-block .mv-image .mv-bottom-image .product-img {
  display: none;
}
header .mv-block .mv-image .mv-bottom-image .product-img .pc-block {
  width: 727px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-bottom-image .product-img .pc-block {
    display: none;
  }
}
header .mv-block .mv-image .mv-block-notes {
  margin-left: 35px;
  position: relative;
  top: -40px;
  display: none;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-block-notes.pc {
    display: none !important;
  }
}
header .mv-block .mv-image .mv-block-notes.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-block-notes.sp {
    display: block;
    top: 0;
    margin-left: 10px;
  }
}
header .mv-block .mv-image .mv-block-notes li {
  font-size: 12px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  text-indent: -1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 480px) {
  header .mv-block .mv-image .mv-block-notes li {
    font-size: 10px;
    font-weight: 500;
  }
}
header .mv-block .mv-image .mv-block-notes li::before {
  content: "※";
}
header .mv-block.view {
  height: 100%;
  padding-bottom: 20px;
}
@media screen and (max-width: 480px) {
  header .cmp-banner.sp {
    position: relative;
    background: #000000;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 480px) {
  header .cmp-banner.sp {
    display: none;
  }
}
header .cmp-banner.sp a {
  display: block;
}
header .cmp-banner.sp img {
  width: 100%;
  height: auto;
}

section {
  width: 100%;
}
@media screen and (max-width: 480px) {
  section {
    width: 100%;
  }
}
section .inner {
  width: 1000px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  section .inner {
    width: 100%;
  }
}
section h2 {
  font-size: 36px;
  font-weight: 500;
  color: #ffffff;
  background: url(../images/title_bg.png), linear-gradient(90deg, rgb(235, 89, 2) 80%, rgb(255, 185, 0) 100%);
  background-repeat: no-repeat;
  background-position: left top;
  border-bottom-right-radius: 160px;
  background-size: contain;
  height: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
}
@media screen and (max-width: 480px) {
  section h2 {
    font-size: 19px;
    height: 100px;
    background: url(../images/title_bg_sp.png) left top no-repeat;
    background-size: cover;
  }
}
section h2 div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section h2 span.tm {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: -6px;
}
section h2::after {
  content: "";
  width: 70px;
  border-bottom: solid 2px #ffffff;
  display: block;
  position: relative;
  top: 18px;
}
@media screen and (max-width: 480px) {
  section h2::after {
    width: 35px;
    top: 10px;
  }
}
section .block-inner {
  width: 836px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  section .block-inner {
    width: 100%;
  }
}
section table {
  width: 700px;
  margin: 0 auto;
  background: #ffffff;
  border: none;
}
@media screen and (max-width: 480px) {
  section table {
    width: 100%;
  }
}
section table th {
  background: #ffffff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  border: none;
  height: 40px;
  border-bottom: solid 1px #211714;
}
section table th:first-of-type {
  text-align: left;
}
section table tr:nth-child(odd) {
  background: #e8e8e2;
}
section table td {
  font-size: 15px;
  padding: 15px 5px;
  font-weight: 500;
  vertical-align: middle;
}
section table td:nth-child(odd) {
  text-align: left;
  border: none;
  border-right: solid 1px #211714;
}
section table td:nth-child(even) {
  border: none;
}
section.re-alise-top {
  z-index: 9999;
  position: relative;
}
section.re-alise-top h2 {
  background: url(../images/title_bg.png), linear-gradient(90deg, rgb(235, 89, 2) 80%, rgb(255, 185, 0) 100%);
  background-repeat: no-repeat;
  background-position: left top;
  border-bottom-right-radius: 160px;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  section.re-alise-top h2 {
    background: url(../images/title_bg_sp.png) left top no-repeat;
    background-size: cover;
    border-bottom-right-radius: 86px;
  }
}
section.re-alise-top .section-ttl ul {
  margin: 28px 0 30px;
}
section.re-alise-top .section-ttl ul li {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .section-ttl ul li {
    font-size: 18px;
  }
}
section.re-alise-top .section-ttl ul li:first-of-type {
  margin-bottom: 18px;
}
section.re-alise-top .product-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block {
    display: block;
    padding: 0 20px;
  }
}
section.re-alise-top .product-block dl {
  width: 410px;
  height: 190px;
  border: solid 1px #8a8a8a;
  padding: 20px 25px;
  margin-bottom: 14px;
  background: #ffffff;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    padding: 15px 0 10px 10px;
  }
}
section.re-alise-top .product-block dl:nth-of-type(even) {
  margin-left: 7px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl:nth-of-type(even) {
    margin-left: 0;
  }
}
section.re-alise-top .product-block dl:nth-of-type(odd) {
  margin-right: 7px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl:nth-of-type(odd) {
    margin-right: 0;
  }
}
section.re-alise-top .product-block dl:nth-of-type(3) {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl:nth-of-type(3) {
    margin-bottom: 10px;
  }
}
section.re-alise-top .product-block dl:nth-of-type(4) {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl:nth-of-type(4) {
    margin-bottom: 0;
  }
}
section.re-alise-top .product-block dl dt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
section.re-alise-top .product-block dl dt .item-text .product-ttl {
  font-size: 28px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
section.re-alise-top .product-block dl dt .item-text .product-ttl br {
  display: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-text .product-ttl {
    margin-bottom: 18px;
    width: 62%;
  }
  section.re-alise-top .product-block dl dt .item-text .product-ttl br {
    display: block;
  }
}
section.re-alise-top .product-block dl dt .item-text .product-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-text .product-type {
    display: block;
    margin-bottom: 8px;
  }
}
section.re-alise-top .product-block dl dt .item-text .product-maker {
  font-size: 9px;
  color: #ffffff;
  padding: 2px 8px;
  background: #000000;
  border-radius: 60px;
  margin-left: 20px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-text .product-maker {
    margin-left: 0;
    border-radius: 4px;
    padding: 0;
    width: 78px;
    height: 19px;
    display: block;
    text-align: center;
    line-height: 19px;
  }
}
section.re-alise-top .product-block dl dt .item-img {
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-img {
    width: 38%;
    text-align: center;
  }
}
section.re-alise-top .product-block dl dt .item-img img.module {
  width: 65px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-img img.module {
    width: 80px;
  }
}
section.re-alise-top .product-block dl dt .item-img img.power_optimiz {
  width: 45px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-img img.power_optimiz {
    width: 60px;
  }
}
section.re-alise-top .product-block dl dt .item-img img.power_con {
  width: 41px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-img img.power_con {
    width: 55px;
  }
}
section.re-alise-top .product-block dl dt .item-img img.monitoring {
  width: 35px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dt .item-img img.monitoring {
    width: 48px;
  }
}
section.re-alise-top .product-block dl dd {
  font-size: 12px;
  margin-top: 20px;
  line-height: 1.8;
  font-weight: 500;
}
section.re-alise-top .product-block dl dd span {
  display: block;
  line-height: 1.8;
}
section.re-alise-top .product-block dl dd span::before {
  content: "■";
}
@media screen and (max-width: 480px) {
  section.re-alise-top .product-block dl dd {
    line-height: 1.5;
    margin-top: 18px;
    margin-right: 10px;
    font-size: 14px;
  }
}
section.re-alise-top .safedc {
  display: flex;
  margin-top: 15px;
  padding-left: 10px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .safedc {
    width: 100%;
    padding: 0 20px;
    margin: 20px 0;
  }
}
section.re-alise-top .safedc img {
  margin-right: 18px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .safedc img {
    width: auto;
    height: 55px;
    margin-right: 15px;
  }
}
section.re-alise-top .safedc .safedc-text .ttl {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .safedc .safedc-text .ttl {
    font-size: 19px;
    font-weight: 500;
  }
}
section.re-alise-top .safedc .safedc-text .text {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .safedc .safedc-text .text {
    font-size: 12px;
  }
}
section.re-alise-top .graph {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .graph {
    padding: 0 10px;
  }
}
section.re-alise-top .graph .ttl {
  font-size: 16px;
  font-weight: bold;
}
section.re-alise-top .bottom-image {
  margin-top: 85px;
}
@media screen and (max-width: 480px) {
  section.re-alise-top .bottom-image {
    margin-top: 60px;
    padding: 0 10px;
  }
}
section.point01 {
  margin-top: 37px;
}
section.point01 .re-alise-point-01 {
  padding-top: 37px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 {
    width: 100%;
    display: block;
    overflow: hidden;
  }
}
section.point01 .re-alise-point-01 .point-01-ttl {
  background: #ffb900;
  height: 283px;
  text-align: right;
  position: absolute;
  top: 0;
  width: 100%;
  right: 40%;
  padding-right: 384px;
  border-top-right-radius: 136px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-ttl {
    width: 65%;
    height: 120px;
    right: auto;
    padding-right: 30px;
    border-top-right-radius: 68px;
  }
}
section.point01 .re-alise-point-01 .point-01-ttl img {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-ttl img {
    margin-top: 25px;
    width: 85%;
    height: auto;
  }
}
section.point01 .re-alise-point-01 .point-01-top {
  margin-left: 35%;
  position: relative;
  background: #f8f8f8;
  border-top-left-radius: 136px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-top {
    width: 100%;
    min-height: 127px;
    margin: 30px 0 0 40px;
    padding: 22px 0 0 22px;
    border-top-left-radius: 58px;
  }
}
section.point01 .re-alise-point-01 .point-01-top .point-01-top-inner {
  width: 520px;
  height: 283px;
  margin-left: 0;
  margin-top: 45px;
  position: relative;
  padding: 45px 0 0 50px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-top .point-01-top-inner {
    width: 100%;
    height: 127px;
    margin: 0;
    padding: 0;
  }
}
section.point01 .re-alise-point-01 .point-01-top h3 {
  color: #eb5902;
  font-size: 32px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: solid 1px #d4d4d4;
  box-shadow: 0 1px 0 #ffffff;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-top h3 {
    font-size: 19px;
    padding: 0 0 7px 0;
    margin-bottom: 7px;
  }
}
section.point01 .re-alise-point-01 .point-01-top p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-top p {
    font-size: 12px;
    line-height: 1.3;
  }
}
section.point01 .re-alise-point-01 .point-01-top span.bottom-text {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-top span.bottom-text {
    font-size: 9px;
    line-height: 1.2;
    margin-top: 5px;
  }
}
section.point01 .re-alise-point-01 .point-01-house {
  position: absolute;
  right: 0;
}
section.point01 .re-alise-point-01 .point-01-house.sp {
  position: relative;
  top: 0;
  z-index: -2;
}
section.point01 .re-alise-point-01 .point-01-line.led {
  width: 470px;
  height: 283px;
  position: absolute;
  top: 700px;
  left: 0;
  border-top-right-radius: 160px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-line.led {
    display: none;
  }
}
section.point01 .re-alise-point-01 .point-01-line.yellow {
  width: 90%;
  height: 283px;
  position: absolute;
  top: 832px;
  right: 0;
  border-bottom-left-radius: 136px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-line.yellow {
    position: absolute;
    z-index: -1;
    top: 340px;
    width: 100%;
    height: 120px;
    border-bottom-right-radius: 83px;
    border-bottom-left-radius: 0;
  }
}
section.point01 .re-alise-point-01 .point-01-middle {
  width: 880px;
  height: 650px;
  padding: 35px 0 0 65px;
  margin-left: 15px;
  border: solid 1px #f2f2f2;
  position: relative;
  background-color: #ffffff;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-middle {
    width: 88%;
    min-height: 350px;
    height: auto;
    margin-left: 0;
    padding: 17px 10px 20px;
  }
}
section.point01 .re-alise-point-01 .point-01-middle .image-ttl {
  font-size: 24px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 20px;
  border-bottom: solid 1px #d4d4d4;
}
@media screen and (max-width: 900px) {
  section.point01 .re-alise-point-01 .point-01-middle .image-ttl {
    font-size: 14px;
    padding-bottom: 8px;
  }
}
section.point01 .re-alise-point-01 .point-01-middle img {
  position: absolute;
}
@media screen and (max-width: 900px) {
  section.point01 .re-alise-point-01 .point-01-middle img {
    margin-top: 15px;
  }
}
section.point01 .re-alise-point-01 .point-01-bottom {
  margin-top: 100px;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-bottom {
    margin-top: -15px;
  }
}
section.point01 .re-alise-point-01 .point-01-bottom .inner h3 {
  color: #eb5902;
  font-size: 32px;
  font-weight: 400;
  width: 400px;
  padding: 0 0 15px 0;
  margin: 25px 0 15px 80px;
  display: inline-block;
  border-bottom: solid 1px #d4d4d4;
  box-shadow: 0 1px 0 #ffffff;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-bottom .inner h3 {
    font-size: 19px;
    width: 50%;
    padding: 15px 0 8px 10px;
    margin: 0;
  }
}
section.point01 .re-alise-point-01 .point-01-bottom .inner .subtext {
  font-size: 16px;
  display: block;
  color: #221815;
  margin: 0 0 15px 80px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-bottom .inner .subtext {
    font-size: 10px;
    line-height: 1.5;
    margin: 0;
    padding: 5px 0 0 10px;
  }
}
section.point01 .re-alise-point-01 .point-01-bottom .inner-ttl-bg {
  width: 70%;
  height: 153px;
  background: #f8f8f8;
  position: absolute;
  left: 0;
  top: 0;
  border-top-right-radius: 93px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-bottom .inner-ttl-bg {
    width: 93%;
    height: 86px;
    min-height: 86px;
    margin-top: 0;
    padding: 12px 0 15px 10px;
    background: #f8f8f8;
    border-top-right-radius: 46px;
  }
}
section.point01 .re-alise-point-01 .point-01-bottom .point-01-line.led {
  width: 62%;
  height: 188px;
  background: #eb5902;
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  border-bottom-left-radius: 93px;
  border-top-right-radius: 0;
  z-index: -2;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .point-01-bottom .point-01-line.led {
    display: block;
    margin-top: 15px;
    height: 94px;
  }
}
section.point01 .re-alise-point-01 .powergene {
  padding: 50px 0 0 0;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene {
    padding: 10px 0 0 0;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-top {
  padding-left: 30px;
  display: flex;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-top {
    display: block;
    margin: 10px 0 0;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-top img {
    width: 52%;
    margin: 0 auto 10px;
    display: block;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-top .hukidashi {
  background: #7c7c7c;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px 22px;
  width: 400px;
  height: 147px;
  color: #ffffff;
  line-height: 1.75;
  margin: 65px 0 0 38px;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-top .hukidashi {
    width: auto;
    margin: 5px 0 0;
    padding: 10px;
    font-size: 14px;
    height: auto;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-top .hukidashi::before {
  content: "";
  background: #7c7c7c;
  height: 22px;
  width: 70px;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 94%);
          clip-path: polygon(100% 0, 100% 100%, 0 94%);
  display: inline;
  left: -62px;
  position: absolute;
  bottom: -7px;
  transform: rotate(-14deg);
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-top .hukidashi::before {
    transform: rotate(146deg);
    top: -17px;
    left: 81px;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-middole {
  margin: 20px 0 28px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-middole {
    padding: 0 10px;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-middole img {
    width: 100%;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-bottom {
  margin-top: 28px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-bottom {
    margin-top: 15px;
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-bottom img {
    width: 52%;
    margin: 0 auto 10px;
    display: block;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-bottom .hukidashi {
  background: #eb5902;
  font-size: 16px;
  font-weight: 500;
  padding: 16px 36px 22px;
  width: 400px;
  height: 200px;
  color: #ffffff;
  line-height: 1.75;
  position: relative;
  margin: 60px 0 0 40px;
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-bottom .hukidashi {
    margin: 5px 0 0;
    padding: 10px;
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 1.3;
  }
}
section.point01 .re-alise-point-01 .powergene .powergene-bottom .hukidashi::after {
  content: "";
  background: #eb5902;
  height: 27px;
  width: 120px;
  -webkit-clip-path: polygon(4% 0, 100% 100%, 0 94%);
          clip-path: polygon(4% 0, 100% 100%, 0 94%);
  display: inline;
  right: -94px;
  position: absolute;
  bottom: 30px;
  transform: rotate(-20deg);
}
@media screen and (max-width: 480px) {
  section.point01 .re-alise-point-01 .powergene .powergene-bottom .hukidashi::after {
    top: -23px;
    left: 87px;
    width: 75px;
    height: 17px;
    transform: rotate(-42deg);
  }
}
section.point02 {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  section.point02 {
    margin-top: 40px;
  }
}
section.point02 .point-02-ttl {
  width: 60%;
  height: 213px;
  position: relative;
  text-align: right;
  padding: 35px 20% 0 0;
  border-top-right-radius: 136px;
  z-index: -2;
}
@media screen and (max-width: 480px) {
  section.point02 .point-02-ttl {
    width: 68%;
    height: 91px;
    padding: 20px 37px 0 20px;
    border-top-right-radius: 68px;
  }
}
section.point02 .inner-ttl-bg {
  width: 63%;
  height: 197px;
  background: #f8f8f8;
  position: absolute;
  right: 0;
  top: 65px;
  border-top-left-radius: 117px;
  z-index: -1;
  padding: 50px 0 0 60px;
}
@media screen and (max-width: 480px) {
  section.point02 .inner-ttl-bg {
    width: 85%;
    height: 85px;
    padding: 25px 0 0 32px;
    position: relative;
    top: -30px;
    margin-left: auto;
  }
}
section.point02 .inner-ttl-bg h3 {
  color: #eb5902;
  font-size: 32px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px 15px 0;
  margin-bottom: 15px;
  border-bottom: solid 1px #d4d4d4;
  box-shadow: 0 1px 0 #ffffff;
}
@media screen and (max-width: 480px) {
  section.point02 .inner-ttl-bg h3 {
    font-size: 19px;
    padding: 0 0 7px 0;
    margin-bottom: 7px;
  }
}
section.point02 .inner-ttl-bg .subtext {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.point02 .inner-ttl-bg .subtext {
    font-size: 12px;
  }
}
section.point02 .inner-ttl-bg .subtext span img {
  margin-left: 5px;
}
@media screen and (max-width: 480px) {
  section.point02 .inner-ttl-bg .subtext span img {
    width: auto;
  }
}
section.point02 .point-02-house {
  position: absolute;
  z-index: -3;
}
section.point02 .point-02-house.sp {
  position: relative;
}
section.point02 .point-02-line.led {
  position: absolute;
  z-index: -4;
  height: 583px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  section.point02 .point-02-line.led {
    height: 260px;
    margin: -50px 0 0 0;
  }
}
section.point02 .re-alise-point-02 {
  margin-top: -148px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 {
    margin-top: -30px;
  }
}
section.point02 .re-alise-point-02 .point-02-top {
  width: 700px;
  margin-left: 45px;
  margin-right: 20px;
  padding: 55px 0 55px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-top {
    width: 82%;
    padding: 20px 0 0 30px;
    height: 85px;
    border-top-left-radius: 58px;
  }
}
section.point02 .re-alise-point-02 .point-02-top h3 {
  color: #eb5902;
  font-size: 32px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px 15px 0;
  margin-bottom: 15px;
  border-bottom: solid 1px #d4d4d4;
  box-shadow: 0 1px 0 #ffffff;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-top h3 {
    font-size: 19px;
    padding: 0 0 7px 0;
    margin-bottom: 7px;
  }
}
section.point02 .re-alise-point-02 .point-02-top .subtext {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-top .subtext {
    font-size: 12px;
  }
}
section.point02 .re-alise-point-02 .point-02-top .subtext span img {
  margin-left: 5px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-top .subtext span img {
    width: auto;
  }
}
section.point02 .re-alise-point-02 .point-02-middle {
  margin-top: 197px;
  padding: 0 0 38px 110px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-middle {
    padding: 0 0 0 20px;
    margin-top: 0;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom h4 {
  width: 72%;
  font-size: 26px;
  color: #ffffff;
  background: #ffb900;
  padding-right: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: 500;
  height: 128px;
  border-bottom-right-radius: 118px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom h4 {
    font-size: 14px;
    font-weight: bold;
    width: 98%;
    height: 56px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 0;
    border-bottom-right-radius: 83px;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom h5 {
  font-size: 26px;
  color: #ffffff;
  background: #eb5902;
  margin-left: 20%;
  padding-left: 70px;
  font-weight: 500;
  height: 128px;
  border-top-left-radius: 118px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom h5 {
    font-size: 14px;
    font-weight: bold;
    width: 98%;
    height: 56px;
    line-height: 1.5;
    padding: 0;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 83px;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom h5 br {
  display: block;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom h5 br {
    display: block;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-info {
  margin: 40px auto 50px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info {
    margin: 18px 0;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dt img {
    width: 170px;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd {
    padding: 0 10px;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd table {
    margin-top: 18px;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd table th {
    font-size: 11px;
    padding: 0 0 7px 0;
    height: auto;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd table th:first-of-type {
  width: 40%;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd table th:first-of-type {
    width: 44%;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-info dl dd table td {
    font-size: 10px;
    padding: 0;
    height: 25px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-compare {
    width: 100%;
    display: block;
    overflow: hidden;
    overflow: scroll;
    padding-left: 10px;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table {
  margin-top: 24px;
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table tr:nth-child(odd) {
  background: #f1f1f1;
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table th {
  vertical-align: bottom;
  padding: 0 10px 10px;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-compare table th {
    font-size: 11px;
    white-space: nowrap;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table th img {
  margin: 0 auto 15px;
  display: block;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-compare table th img {
    width: 72px;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td {
  border-right: solid 1px #211714;
  text-align: center;
  padding: 15px 5px;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td {
    white-space: nowrap;
    font-size: 10px;
  }
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td.td-rerise {
  color: #f85900;
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td:first-of-type {
  text-align: left;
  width: 150px;
  vertical-align: middle;
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td:nth-of-type(2)::before {
  content: "";
  position: absolute;
  background: #ff0000;
  z-index: 999;
  height: 100%;
  width: 100%;
  opacity: 0.1;
  top: 0;
  left: 0;
}
section.point02 .re-alise-point-02 .point-02-bottom .product-compare table td:nth-of-type(4) {
  border: none;
}
section.point03 {
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  section.point03 {
    margin-top: 37px;
  }
}
section.point03 .point-03-ttl.yellow {
  width: 60%;
  height: 193px;
  background: #ffb900;
  text-align: right;
  padding: 35px 20% 0 0;
  border-top-right-radius: 136px;
  z-index: -1;
  position: absolute;
}
@media screen and (max-width: 480px) {
  section.point03 .point-03-ttl.yellow {
    width: 86%;
    height: 96px;
    padding: 20px 105px 0 20px;
  }
}
section.point03 .re-alise-point-03 {
  padding: 0;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 {
    padding: 0;
  }
}
section.point03 .re-alise-point-03 .inner {
  padding: 20px 0 0;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .inner {
    padding: 50px 0 0;
    position: relative;
  }
}
section.point03 .re-alise-point-03 .point-03-top {
  width: 61%;
  height: 197px;
  position: relative;
  top: 60px;
  margin: 0 0 60px auto;
  padding: 55px 0 55px 45px;
  background: #f8f8f8;
  border-top-left-radius: 118px;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-top {
    width: 97%;
    height: 98px;
    margin-bottom: 19px;
    padding: 20px 24px 15px 24px;
    background: #f8f8f8;
    border-top-left-radius: 58px;
  }
}
section.point03 .re-alise-point-03 .point-03-top h3 {
  color: #eb5902;
  font-size: 32px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 15px 0;
  margin-bottom: 15px;
  border-bottom: solid 1px #d4d4d4;
  box-shadow: 0 1px 0 #ffffff;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-top h3 {
    font-size: 19px;
    padding: 0 0 7px 0;
    margin-bottom: 7px;
  }
}
section.point03 .re-alise-point-03 .point-03-top p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-top p {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom {
    padding: 0 10px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom .lead-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  display: block;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom .lead-text {
    font-size: 12px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom h4 {
  font-size: 28px;
  font-weight: 400;
  color: #eb5902;
  line-height: 1.3;
  margin: 30px 0 37px;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom h4 {
    margin: 18px 0;
    font-size: 19px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom ol li {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom ol li {
    font-size: 12px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom ol li:first-of-type {
  margin-bottom: 13px;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom ol li:first-of-type {
    margin-bottom: 9px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom ul.notes li {
  font-size: 13px;
  font-weight: 400;
  position: relative;
  line-height: 1.5;
}
section.point03 .re-alise-point-03 .point-03-bottom ul.notes li::before {
  content: "※";
  position: relative;
}
section.point03 .re-alise-point-03 .point-03-bottom ul.notes li.text-link::before {
  content: "";
}
section.point03 .re-alise-point-03 .point-03-bottom .point-03-bottom-image {
  text-align: center;
  padding: 56px 0 30px;
}
@media screen and (max-width: 480px) {
  section.point03 .re-alise-point-03 .point-03-bottom .point-03-bottom-image {
    padding: 0;
    margin: 20px 10px;
  }
}
section.point03 .re-alise-point-03 .point-03-bottom .point-03-bottom-image img {
  margin: 0 auto;
}
section.point03 .re-alise-point-03 .point-03-bottom .point-03-bottom-image ul.notes li {
  font-size: 11px;
}
section.camp-back-layer.pc {
  width: 100%;
  margin-top: 40px;
  position: relative;
}
section.camp-back-layer.pc .camp-back-layer-01 {
  background: #eb5902;
  width: 66%;
  height: 192px;
  right: 0;
  position: absolute;
  padding-left: 50px;
  line-height: 140px;
  border-top-left-radius: 117px;
  z-index: 102;
}
section.camp-back-layer.pc .camp-back-layer-02 {
  width: 66%;
  height: 193px;
  color: #231815;
  left: 0;
  position: relative;
  top: 110px;
  background: #d2d2d2;
  font-size: 30px;
  font-weight: bold;
  text-align: right;
  padding: 120px 70px 0 0;
  border-top-right-radius: 136px;
  z-index: 101;
}
section.camp-back-layer.sp {
  width: 100%;
  margin-top: 45px;
  position: relative;
  display: block;
  margin-left: 0;
}
@media screen and (min-width: 480px) {
  section.camp-back-layer.sp {
    display: none;
  }
}
section.camp-back-layer.sp .camp-back-layer-01 {
  width: 97%;
  top: 0;
  height: 96px;
  border-top-left-radius: 58px;
  line-height: normal;
  margin-left: auto;
  padding: 30px 55px 30px 17px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eb5902;
  z-index: 101;
}
@media screen and (min-width: 480px) {
  section.camp-back-layer.sp .camp-back-layer-01 {
    display: none;
  }
}
section.camp-back-layer.sp .camp-back-layer-02 {
  position: relative;
  top: 0;
  width: auto;
  padding: 0 0 0 25px;
  margin: 0;
  height: 96px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #d2d2d2;
  border-top-right-radius: 68px;
  z-index: 102;
}
@media screen and (min-width: 480px) {
  section.camp-back-layer.sp .camp-back-layer-02 {
    display: none;
  }
}
section.re-alise-camp {
  width: 100%;
  position: relative;
  height: 750px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: contain;
  z-index: -2;
  margin-top: -2px;
  background: url(../images/form_bg_2.jpg) left top no-repeat;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp {
    width: 100%;
    height: 466px;
    display: block;
    overflow: hidden;
    padding-top: 0;
    margin-top: -96px;
  }
}
section.re-alise-camp h2 {
  font-size: 30px;
  background: none;
  height: auto;
  padding: 0;
  margin-top: 0px;
}
section.re-alise-camp h2::after {
  display: none;
}
section.re-alise-camp .re-alise-camp-inner {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 100px;
  color: #ffffff;
  font-weight: 500;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp .re-alise-camp-inner {
    width: 100%;
    font-size: 44px;
    background-size: contain;
  }
}
section.re-alise-camp .re-alise-camp-inner img {
  margin-top: 30px;
}
section.re-alise-camp.open {
  display: flex;
  font-size: 16px;
  padding-top: 0;
  height: auto;
  z-index: 100;
  background-size: cover;
}
section.re-alise-camp.open.dis-none {
  display: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open {
    padding-top: 125px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner {
  display: block;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner {
    padding: 0 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info {
  width: 1000px;
  margin: 0 auto 60px;
  padding: 96px 0 90px;
  text-align: center;
  background: #ffffff;
  border: solid 10px #ffe44d;
  color: #222222;
  font-size: 18px;
  box-shadow: 10px 10px 7px 0px rgba(199, 181, 116, 0.5);
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info {
    width: 98%;
    margin: 0 auto;
    padding: 50px 20px 46px;
    border: solid 3px #ffe44d;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info h3 {
    font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info h3::after {
  content: "";
  width: 85px;
  height: 3px;
  background: #222222;
  display: block;
  margin: 20px auto 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info h3::after {
    margin: 10px auto 0;
    height: 2px;
    width: 35px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext {
  margin-top: 70px;
  line-height: 38px;
  position: relative;
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext span {
  position: relative;
  bottom: 0;
  z-index: 1;
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext span::after {
  content: "";
  width: 100px;
  height: 9px;
  position: absolute;
  background-color: rgba(255, 228, 77, 0.7);
  bottom: 2px;
  left: -3px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext span::after {
    width: 100%;
    height: 6px;
    bottom: 1px;
  }
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
  }
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-innertext br {
    display: none;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-img {
  background: #000000;
  width: 800px;
  height: 130px;
  margin: 16px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-img img.pc {
  width: auto;
  height: 78px;
  margin: 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-img {
    width: 100%;
    height: 95px;
    padding: 10px;
  }
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-img img.sp {
    margin: 0 auto;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info span.note {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info span.note {
    font-size: 12px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn {
  width: 372px;
  height: 60px;
  font-weight: bold;
  font-size: 24px;
  background: #f75c03;
  border-radius: 60px;
  margin: 48px auto 72px;
  text-align: center;
  position: relative;
  border: none;
  box-shadow: 1px 1px 0px #d44f03;
  cursor: pointer;
  transition-duration: 0.3s;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn {
    width: 225px;
    height: 36.5px;
    margin: 21px 42.5px 0;
    font-size: 15px;
    font-weight: 700;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn:hover {
  scale: 1.05;
  opacity: 1;
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 57px;
  color: #ffffff;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn a {
    line-height: 37px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn a:hover {
  opacity: 1;
}
section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  width: 15px;
  height: 14px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  position: absolute;
  right: 27px;
  top: 40%;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .re-alise-camp-btn::after {
    width: 10px;
    height: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info h4 {
  font-size: 20px;
  font-weight: bold;
  width: 800px;
  height: 53px;
  line-height: 53px;
  color: #222222;
  margin: 0 auto;
  background: #ffe44d;
  border-radius: 60px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info h4 {
    width: 100%;
    height: 31.5px;
    font-size: 15px;
    line-height: 30px;
    margin: 42.5px auto 25px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info p {
  font-size: 20px;
}
section.re-alise-camp.open .re-alise-camp-inner-info p.entryperiod {
  font-size: 40px;
  margin: 40px 70px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info p.entryperiod {
    font-size: 18.5px;
    margin: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info p.method {
  font-size: 20px;
  line-height: 32px;
  margin: 38px auto 30px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info p.method {
    font-size: 15px;
    margin: 0;
  }
  section.re-alise-camp.open .re-alise-camp-inner-info p.method br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info p.text {
    font-size: 15px;
    line-height: 22px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info ul.notes {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info ul.notes {
    width: 100%;
    margin: 1rem auto 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info ul.notes li {
  position: relative;
  font-size: 14px;
  line-height: 26px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info ul.notes li {
    font-size: 13px;
    line-height: 16px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info ul.notes li::before {
  content: "※";
  position: relative;
}
section.re-alise-camp.open .re-alise-camp-inner-info ul.notes.bottom {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info ul.notes.bottom {
    margin-top: 16.5px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-info .arrow {
  line-height: 1;
  width: 0;
  height: 0;
  color: #ffe44d;
  border-style: solid;
  border-color: transparent;
  border-width: 28px 34px;
  border-top-color: currentColor;
  border-bottom: 0;
  display: block;
  margin: 30px auto;
  background: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-info .arrow {
    border-width: 14px 17px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom {
  width: 1000px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom {
    width: 98%;
    margin: 0 auto;
    margin-top: 50px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form {
  width: 100%;
  font-size: 20px;
  color: #222222;
  padding: 100px;
  margin: 0 auto 90px;
  border: none;
  background: #ffffff;
  box-shadow: 10px 10px 7px 0px rgba(199, 181, 116, 0.5);
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form {
    padding: 50px 20px 46px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form h3 {
    font-size: 19px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 35px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form h3::after {
  content: "";
  width: 85px;
  height: 3px;
  background: #222222;
  display: block;
  margin: 18px auto 70px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form h3::after {
    width: 35px;
    height: 2px;
    margin: 10px auto 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 14px;
  margin: 0 0 20px;
  display: block;
  border-bottom: solid 1px #d1d1d1;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp {
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp {
    margin-bottom: 20px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp.bottom {
  margin-bottom: 45px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp label {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .name-block {
  display: flex;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .name-block {
    flex-flow: column;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp select, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp textarea {
  color: #222222;
  padding-left: 10px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=tel] {
  width: 390px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=tel]#zip {
  width: 390px;
  height: 37px !important;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=tel] {
    width: 100% !important;
    margin-bottom: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=email] {
  width: 390px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=email] {
    width: 100%;
    margin-bottom: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text] {
  width: 390px;
  height: 37px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text]#zip {
  width: 390px;
  height: 37px !important;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text]#zip {
    width: 100% !important;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text].fullname, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text].addres1 {
  margin-right: 20px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text].fullname, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text].addres1 {
    margin-right: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text].zip-code {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp input[type=text] {
    width: 100%;
    margin-bottom: 10px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp textarea {
  width: 700px;
  height: 135px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp textarea {
    width: 100%;
    height: 135px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65 {
  position: relative;
  background: #ffffff;
  width: 390px;
  height: 37px;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65 {
    width: 100%;
    padding-right: 35px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 37px;
  width: 1px;
  right: 36px;
  background: #d1d1d1;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65::before {
    width: 36px;
    right: 0;
    border: solid 1px #d1d1d1;
    background: none;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 10px;
  height: 10px;
  border: solid 2px #646464;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  right: 13px;
  top: 15px;
  position: absolute;
  transform: translateY(-25%) rotate(135deg);
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.menu-65 select.select-type {
  position: relative;
  background: none;
  padding: 0 0 0 15px;
  width: 100%;
  height: 100%;
  border: solid 1px #d1d1d1;
  cursor: pointer;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  width: 33.3333333333%;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    width: 100%;
    margin: 15px 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label {
  margin-bottom: 0;
  padding-left: 5px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input {
  display: none;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span {
    font-size: 15px;
    padding-left: 35px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::after, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::before {
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px #d1d1d1;
  background-color: #f4f4f4;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::after {
  content: "";
  position: absolute;
  width: 17px;
  padding-top: 6px;
  left: 2px;
  top: 3px;
  border-left: 4px solid #f76812;
  border-bottom: 4px solid #f76812;
  border-radius: 2px;
  transform: rotate(-45deg);
  display: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::after {
    top: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input:checked + span::after {
  display: block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input:checked + span::before {
  background: #ffffff;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item-label {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox.checkbox2 {
    flex-flow: column;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox.checkbox2 .wpcf7-list-item {
  width: 42%;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control.wpcf7-checkbox.checkbox2 .wpcf7-list-item {
    width: 100%;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.checkbox-821 .wpcf7-not-valid-tip {
  margin-top: -10px;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7-form-control-wrap.checkbox-821 .wpcf7-not-valid-tip {
    justify-content: flex-start;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=text],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=tel],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=email],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=number],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=url],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 input[type=password],
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 textarea, section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .wpcf7 select {
  background: #f4f4f4;
  border: solid 1px #d1d1d1;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .disp-flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .formgrp .disp-flex {
    flex-flow: column;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .required {
  color: #ffffff;
  width: 44px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  font-weight: 700;
  margin-left: 20px;
  background: #f75c03;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .confirm-btn {
  width: 372px;
  height: 60px;
  font-weight: 700;
  font-size: 24px;
  line-height: 62px;
  text-align: center;
  color: #ffffff;
  background: #f75c03;
  border: solid 2px #f75c03;
  border-radius: 60px;
  margin: 70px auto 18px;
  position: relative;
  transition: 1s;
  transition-duration: 0.3s;
  box-shadow: 1px 1px 0px #d44f03;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .confirm-btn {
    margin: 25px 0 0;
    width: 225px;
    height: 36.5px;
    font-size: 15px;
    line-height: 36px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .confirm-btn:hover {
  opacity: 1;
  scale: 1.05;
  color: #f75c03;
  background: #ffffff;
  box-shadow: none;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: solid 4px #ffffff;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input {
  display: none;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span {
  font-size: 20px;
  color: #f75c03;
  padding-left: 28px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span {
    font-size: 14px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span::after, section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span::before {
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px #d1d1d1;
  background-color: #f4f4f4;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span::after {
  content: "";
  position: absolute;
  width: 17px;
  padding-top: 6px;
  left: 1px;
  top: 3px;
  border-left: 4px solid #f76812;
  border-bottom: 4px solid #f76812;
  border-radius: 2px;
  transform: rotate(-45deg);
  display: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input + span::after {
    top: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input:checked + span::before {
  background-color: #ffffff;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check input:checked + span::after {
  display: block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .entry-check .wpcf7-not-valid-tip {
  margin-top: 5px;
  justify-content: center;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac {
  text-align: left;
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac {
    margin-top: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac label {
  border: solid 1px #d1d1d1;
  margin-bottom: 10px;
  padding: 5px;
  display: inline-block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac label img {
  width: 59px;
  height: auto;
  margin: 0;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac .wpcf7-form-control-wrap {
  display: block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac .wpcf7-form-control-wrap input[type=text] {
  text-indent: 15px;
  width: 390px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .captchac .wpcf7-form-control-wrap input[type=text] {
    width: 100%;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy {
  text-align: left;
  margin-top: 40px;
  font-size: 16px;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy h5 {
  font-size: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy h5 {
    margin-bottom: 15px;
    font-size: 15px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy a {
  text-decoration: underline;
  display: inline-block;
  margin: 0 0 0 20px;
  position: relative;
  font-size: 90%;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy a {
    margin: 15px auto 25px;
    width: 100%;
    font-size: 13px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy a:hover {
  text-decoration: none;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/open_in_window.svg) left top no-repeat;
  position: relative;
  top: 8px;
  left: 5px;
  background-size: 80%;
  display: inline-block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input {
  display: none;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span {
  font-size: 18px;
  padding-left: 28px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span {
    font-size: 14px;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span::after, section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span::before {
  content: "";
  height: 18px;
  width: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border: solid 1px #d1d1d1;
  background-color: #f4f4f4;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span::after {
  content: "";
  position: absolute;
  width: 17px;
  padding-top: 6px;
  left: 1px;
  top: 1px;
  border-left: 4px solid #f76812;
  border-bottom: 4px solid #f76812;
  border-radius: 2px;
  transform: rotate(-45deg);
  display: none;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input + span::after {
    top: 0;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input:checked + span::before {
  background-color: #ffffff;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy input:checked + span::after {
  display: block;
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy .wpcf7-not-valid-tip {
  position: absolute;
  top: 20px;
}
@media screen and (max-width: 480px) {
  section.re-alise-camp.open .re-alise-camp-inner-bottom form .privacy-policy .wpcf7-not-valid-tip {
    top: 1.5rem;
  }
}
section.re-alise-camp.open .re-alise-camp-inner-bottom form .wpcf7-not-valid-tip {
  width: -moz-fit-content;
  width: fit-content;
  color: #f75c03;
  font-size: 14px;
  margin: 7px 0;
  position: relative;
  display: flex;
  font-weight: 700;
}
section.re-alise-odf-dl {
  z-index: 9999;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl h2 {
    border-bottom-right-radius: 86px;
  }
}
section.re-alise-odf-dl ul.catalogue {
  padding: 70px 0 94px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue {
    display: block;
    padding: 31px 0 40px;
    margin: 0;
  }
}
section.re-alise-odf-dl ul.catalogue li {
  width: 250px;
  text-align: center;
  padding: 0;
  background: #f76812;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue li {
    margin: 0 auto 20px;
    width: 60%;
    padding-top: 1px;
  }
  section.re-alise-odf-dl ul.catalogue li:last-of-type {
    margin-bottom: 0;
  }
}
section.re-alise-odf-dl ul.catalogue li .catalogue-img {
  background: #ffffff;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 14px 14px 0;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue li .catalogue-img {
    margin: 10px;
    height: auto;
    padding: 4px 15px;
  }
}
section.re-alise-odf-dl ul.catalogue li .catalogue-name {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  padding: 17px 0;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue li .catalogue-name {
    font-size: 16px;
    padding: 8px 0;
  }
}
section.re-alise-odf-dl ul.catalogue li .catalogue-dl {
  color: #f76812;
  font-weight: bold;
  background: #ffffff;
  height: 60px;
  border: solid 4px #f76812;
  border-top: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue li .catalogue-dl {
    font-size: 14px;
    height: auto;
    padding: 10px 0;
  }
}
section.re-alise-odf-dl ul.catalogue li .catalogue-dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
section.re-alise-odf-dl ul.catalogue li .catalogue-dl a:hover {
  opacity: 1;
  color: #ffffff;
  background-color: rgba(247, 104, 18, 0.9);
  transition: 0.5s;
}
section.re-alise-odf-dl ul.catalogue li .catalogue-dl img {
  margin-left: 15px;
}
@media screen and (max-width: 480px) {
  section.re-alise-odf-dl ul.catalogue li .catalogue-dl img {
    margin-left: 5px;
    width: 15px;
    height: auto;
  }
}
section.re-alise-product {
  z-index: 9999;
  position: relative;
}
section.re-alise-product h2 {
  margin-bottom: 70px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product h2 {
    background: url(../images/title_bg_sp.png) no-repeat left top;
    background-size: cover;
    margin-bottom: 0;
    border-bottom-right-radius: 86px;
  }
}
section.re-alise-product .re-alise-product-line.yellow {
  width: 28%;
  height: 193px;
  position: absolute;
  top: 200px;
  right: 0;
  z-index: -1;
  border-bottom-left-radius: 136px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .re-alise-product-line.yellow {
    width: 43%;
    height: 74px;
    top: 100px;
  }
}
section.re-alise-product .re-alise-product-line.led {
  width: 32%;
  height: 138px;
  position: relative;
  left: 0;
  border-top-right-radius: 136px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .re-alise-product-line.led {
    width: 20%;
    height: 53px;
    position: relative;
    margin-top: -50px;
  }
}
section.re-alise-product .re-alise-product-line-bottom.yellow {
  width: 33%;
  height: 193px;
  position: absolute;
  top: -50px;
  left: 0;
  border-top-right-radius: 136px;
  z-index: -2;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .re-alise-product-line-bottom.yellow {
    top: 0;
    width: 27%;
    height: 74px;
  }
}
section.re-alise-product .re-alise-product-line-bottom.led {
  width: 40%;
  height: 134px;
  position: absolute;
  top: 200px;
  top: 55px;
  right: 0;
  z-index: -1;
  border-top-left-radius: 136px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .re-alise-product-line-bottom.led {
    width: 42%;
    height: 55px;
    position: relative;
    top: 0;
    margin-top: -50px;
    margin-left: auto;
    z-index: -2;
  }
}
section.re-alise-product .product-block {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block {
    width: 100%;
    margin-top: -15px;
    padding: 0 10px;
    margin-bottom: 40px;
  }
}
section.re-alise-product .product-block dl dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block dl dt {
    padding: 0 20px;
  }
}
section.re-alise-product .product-block dl dt .product-ttl {
  font-size: 60px;
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block dl dt .product-ttl {
    font-size: 30px;
  }
}
section.re-alise-product .product-block dl dt .product-type {
  display: inline-block;
  margin-top: 20px;
}
section.re-alise-product .product-block dl dt .product-maker {
  width: 118px;
  height: 20px;
  font-weight: normal;
  line-height: 20px;
  margin: 20px 0 0 20px;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 60px;
}
section.re-alise-product .product-block dl dt .product-img {
  width: 260px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block dl dt .product-img {
    width: 130px;
  }
}
section.re-alise-product .product-block dl dt .product-img img {
  display: block;
  margin: 0 auto;
}
section.re-alise-product .product-block dl dt .product-img .sub-text {
  color: #eb5902;
  font-size: 14px;
  background: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  text-align: center;
  border: solid 1px #eb5902;
  padding: 5px 12px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block dl dt .product-img .sub-text {
    font-size: 10px;
    width: 60px;
    padding: 5px 0;
  }
}
section.re-alise-product .product-block dl dt .product-img .option {
  font-size: 12px;
  white-space: nowrap;
  display: block;
  margin-top: 10px;
}
section.re-alise-product .product-block dl dd {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  padding: 48px 0 24px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block dl dd {
    padding: 22px 10px 18px;
    font-size: 11px;
  }
}
section.re-alise-product .product-block ol.notes {
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block ol.notes {
    margin-top: 10px;
  }
}
section.re-alise-product .product-block ol.notes li {
  text-indent: -1rem;
  padding-left: 1rem;
  line-height: 1.5;
  font-size: 12px;
  font-weight: 500;
}
section.re-alise-product .product-block ol.notes li::before {
  content: "※";
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block table th {
    font-size: 11px;
    padding: 6px;
    height: auto;
  }
}
section.re-alise-product .product-block table td {
  font-weight: 500;
  text-align: center;
  padding: 18px 5px;
  line-height: 1.3;
  border-right: solid 1px #211714;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block table td {
    padding: 6px;
    font-size: 10px;
  }
}
section.re-alise-product .product-block table td:first-of-type {
  text-align: left;
}
section.re-alise-product .product-block table td:last-of-type {
  border: none;
}
section.re-alise-product .product-block table td.ttl-output {
  border: none;
}
section.re-alise-product .product-block table td.ttl-input {
  border: none;
  background: #ffffff;
}
section.re-alise-product .product-block.top {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.top {
    margin: 70px 0 40px;
  }
}
section.re-alise-product .product-block.top .product-text {
  margin-top: 20px;
}
section.re-alise-product .product-block.middle {
  margin-top: -30px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.middle {
    margin: 0;
  }
}
section.re-alise-product .product-block.middle dl dt {
  align-items: flex-end;
}
section.re-alise-product .product-block.middle table tr td:first-of-type {
  width: 205px;
}
section.re-alise-product .product-block.bottom {
  margin-top: 97px;
  width: auto;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.bottom {
    width: 100%;
    margin-top: 0;
    display: block;
    overflow: hidden;
  }
}
section.re-alise-product .product-block.bottom .inner {
  width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.bottom .inner {
    width: 100%;
  }
}
section.re-alise-product .product-block.bottom dl dt .product-text {
  margin-top: 15px;
}
section.re-alise-product .product-block.bottom dl dt .option {
  font-size: 9px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.bottom dl dt .product-img {
    margin-top: 30px;
  }
}
section.re-alise-product .product-block.bottom .table-bottom-notes {
  font-size: 12px;
  margin: 13px 0 20px;
  font-weight: 500;
  display: inline-block;
}
section.re-alise-product .product-block.bottom ul.product-block-notes {
  background: #d2d2d2;
  font-size: 12px;
  padding: 27px 12px;
  border-radius: 5px;
  margin-top: 17px;
}
@media screen and (max-width: 480px) {
  section.re-alise-product .product-block.bottom ul.product-block-notes {
    margin-top: 0;
  }
}
section.re-alise-product .product-block.bottom ul.product-block-notes li {
  text-indent: -1rem;
  padding-left: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
section.re-alise-product .product-block.bottom ul.product-block-notes li::before {
  content: "※";
}
section.back-layer-top {
  width: 100%;
  z-index: 20;
  position: absolute;
}
section.back-layer-top .img-01 {
  top: 200px;
  width: 650px;
  height: 283px;
  background: #ffb900;
  border-top-right-radius: 136px;
  position: absolute;
}
@media screen and (max-width: 480px) {
  section.back-layer-top .img-01 {
    width: 30%;
    height: 84px;
    top: 100px;
    border-top-right-radius: 68px;
  }
}
section.back-layer-top .img-02 {
  width: 650px;
  height: 283px;
  background: #eb5902;
  position: absolute;
  right: 0;
  top: 535px;
  border-bottom-left-radius: 160px;
}
@media screen and (max-width: 480px) {
  section.back-layer-top .img-02 {
    width: 36%;
    height: 88px;
    border-bottom-left-radius: 138px;
    top: 814px;
  }
}

.re-alise-camp-close {
  position: absolute;
  background: #ffffff;
  top: 50px;
  z-index: 999;
  width: 100%;
  height: calc(100% - 50px);
  color: #ffffff;
  font-size: 116px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  display: none;
}
@media screen and (max-width: 480px) {
  .re-alise-camp-close {
    display: block;
    top: 0;
    height: 100%;
  }
}

footer {
  color: #ffffff;
  background: #ea5903;
  height: 40px;
  margin-top: 124px;
}
@media screen and (max-width: 480px) {
  footer {
    margin-top: 67.5px;
  }
}
footer .copy {
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
}

#page-top {
  display: none;
}
#page-top .pagetop {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 100px;
  bottom: 30px;
  background-color: rgba(255, 179, 0, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
@media screen and (max-width: 480px) {
  #page-top .pagetop {
    width: 60px;
    height: 60px;
    right: 15px;
  }
}
#page-top .pagetop__arrow {
  height: 14px;
  width: 14px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translateY(20%) rotate(-45deg);
}

#autozip {
  visibility: hidden !important;
  display: none !important;
  opacity: 0 !important;
}

section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed h3 {
  margin-bottom: 40px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed h4 {
  border-bottom: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner {
  background: #fff;
  color: #222222;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: solid 1px rgba(34, 34, 34, 0.6);
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .required {
  display: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp label {
  font-size: 15px;
  margin-bottom: 14px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap {
  background: none !important;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap.menu-65 {
  background: none !important;
  padding: 0;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap.menu-65::after {
  display: none !important;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap.menu-65::before {
  display: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap.menu-65 select.select-type {
  border: none;
  font-size: 20px;
  padding-left: 0;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap.menu-65 select.select-type {
    font-size: 14px;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap input[type=email], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap input[type=text], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control-wrap input[type=tel] {
  background: none !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  width: 100%;
  padding: 0;
  border: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp.bottom {
  width: 100%;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp.bottom textarea {
  width: 100%;
  display: block;
  padding: 0;
  border: none;
  background: #ffffff;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
  height: 20px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input,
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check input {
  display: block;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: 19px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input:disabled {
  background: #ffffff;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label,
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check .wpcf7-list-item label {
  display: flex;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label::after, section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item label::before,
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check .wpcf7-list-item label::after,
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check .wpcf7-list-item label::before {
  display: none;
  border: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span::before,
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check input + span::before {
  display: none;
  border: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .formgrp .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item input + span {
  padding-left: 12px;
  display: inline-block;
  position: relative;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check {
  border: none;
  justify-content: flex-start;
  border-bottom: solid 1px rgba(34, 34, 34, 0.6);
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed #form-inner .entry-check {
    height: 25px;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .privacy-policy input + span {
  cursor: default;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .privacy-policy input + span::after {
  display: block;
  border-color: #f1f1f1;
  cursor: default;
  width: 7px;
  top: 5px;
  left: 4px;
  border-left: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .privacy-policy input + span::after {
    top: 3px;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .privacy-policy input + span::before {
  display: block;
  border-color: #ffffff;
  cursor: default;
  width: 15px;
  height: 15px;
  top: 57%;
  background-color: #d1d1d1;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .privacy-policy a {
  display: none;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check input + span {
  padding-left: 15px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn {
  margin-top: 50px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn {
    margin-top: 25px !important;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-btn-back {
  background: #9d9595 !important;
  width: 372px !important;
  margin: 0 20px 0 0 !important;
  border: solid 2px #9d9595 !important;
  box-shadow: 1px 1px 0px #7d7a7a !important;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-btn-back {
    width: 225px !important;
    margin-right: 10px !important;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-btn-back:hover {
  color: #9d9595 !important;
  background-color: #ffffff !important;
  box-shadow: none !important;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-elm-step2 {
  margin: 0 20px 0 0 !important;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-elm-step2 {
    margin: 0 !important;
  }
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .confirm-btn.wpcf7c-elm-step2.wpcf7c-btn-back {
    margin-right: 15px !important;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .entry-check-btn .ajax-loader {
  margin: 0 !important;
  width: 0 !important;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=email], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=text], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=tel] {
  font-size: 20px;
}
@media screen and (max-width: 480px) {
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=email], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=text], section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=tel] {
    font-size: 14px;
    height: 25px;
  }
  section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=email]#zip, section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=text]#zip, section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=tel]#zip {
    font-size: 14px;
  }
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed input[type=tel] {
  height: 25px;
}
section#re-alise-camp.open .re-alise-camp-inner-bottom form.custom-wpcf7c-confirmed .captchac {
  display: none;
}

.scrolldown1 {
  position: fixed;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}
@media screen and (min-width: 480px) {
  .scrolldown1.sp {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .scrolldown1 {
    position: relative;
    bottom: 0;
  }
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #eee;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
  left: 8px;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.dis-none {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.dis-none.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
}

.title-l {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(-30px); /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.title-l.is-ttl-Lin {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0.1s; /* フェード開始を0.5秒遅らせる */
}

.title-r {
  opacity: 0; /* 最初は非表示 */
  transform: translateX(30px); /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}
.title-r.is-ttl-Rin {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateX(0); /* 30px上に移動する */
  transition-delay: 0.1s; /* フェード開始を0.5秒遅らせる */
}

.animate__delay-05s {
  animation-delay: calc(var(--animate-delay) * 0.5);
}

.animate__delay-07s {
  animation-delay: calc(var(--animate-delay) * 0.7);
}

.animate__delay-08s {
  animation-delay: calc(var(--animate-delay) * 0.8);
}

.animate__delay-09s {
  animation-delay: calc(var(--animate-delay) * 0.9);
}

.animate__delay-10s {
  animation-delay: calc(var(--animate-delay) * 1);
}

.animate__delay-11s {
  animation-delay: calc(var(--animate-delay) * 1.1);
}

.animate__delay-12s {
  animation-delay: calc(var(--animate-delay) * 1.2);
}

.animate__delay-13s {
  animation-delay: calc(var(--animate-delay) * 1.3);
}

.animate__delay-16s {
  animation-delay: calc(var(--animate-delay) * 1.6);
}

.inner-banner {
  width: 100%;
  margin: 90px auto 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.inner-banner a:hover {
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .inner-banner {
    margin: 0 auto;
    padding: 35px 15px 0;
  }
}
.inner-banner img {
  margin-top: 0 !important;
  transition-duration: 0.3s;
}
.inner-banner img:hover {
  scale: 1.05;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.inner-banner.bottom {
  margin: 60px auto;
}
@media screen and (max-width: 480px) {
  .inner-banner.bottom {
    margin: 0 auto;
    padding: 0;
  }
}/*# sourceMappingURL=lp-cmp-style.css.map */