@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #111;
  line-height: 1.8;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  font-size: 1rem;
}
@media (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

img, picture, svg, video, canvas {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

button {
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

/*------------------------------------------------------------
ラッパー
------------------------------------------------------------*/
#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/*------------------------------------------------------------
nav関連
------------------------------------------------------------*/
.smenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}
.smenu .logo img {
  height: 40px;
  width: auto;
}

.nav-content ul {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 20px;
}

@media (max-width: 767px) {
  .nav-btn {
    position: relative;
    z-index: 1100;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-btn span, .nav-btn span::before, .nav-btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 30px;
    height: 2px;
    background: #333;
    transition: 0.3s;
    border-radius: clamp(0.3rem, calc(0.1960784314vw + 0.2235294118rem), 0.6rem);
  }
  .nav-btn span {
    top: 50%;
    translate: -50% -50%;
  }
  .nav-btn span::before {
    top: -9px;
  }
  .nav-btn span::after {
    top: 9px;
  }
  .nav-open .nav-btn span {
    background: transparent;
  }
  .nav-open .nav-btn span::before {
    top: 0;
    rotate: 45deg;
  }
  .nav-open .nav-btn span::after {
    top: 0;
    rotate: -45deg;
  }
  .nav-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s;
  }
  .nav-content ul {
    list-style: none;
    text-align: center;
  }
  .nav-content ul li {
    margin-bottom: 25px;
  }
  .nav-content ul li a {
    font-size: clamp(1.4rem, calc(0.1307189542vw + 1.3490196078rem), 1.6rem);
    font-weight: bold;
  }
  .nav-open .nav-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 20px;
}
footer .ft1, footer .ft2 {
  position: relative;
  z-index: 2;
}

.grad_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30rem, calc(1.3071895425vw + 29.4901960784rem), 32rem);
  max-width: 100%;
  height: 64px;
  margin: 0 auto;
  color: #fff;
  border-radius: 100vh;
  text-decoration: none;
  font-weight: bold;
  background: linear-gradient(270deg, #3bade3 0%, #576fe6 25%, #9844b7 51%, #ff357f 100%);
  background-size: 200% auto;
  background-position: 0% 50%;
  transition: all 0.5s ease;
}
.grad_btn:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(87, 111, 230, 0.3);
}

.grad_btn:hover {
  color: #fff;
  background-position: 99% 50%;
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/*------------------------------------------------------------
inview css
------------------------------------------------------------*/
.anm {
  opacity: 0;
}

.anm_all.trigger {
  opacity: 1;
}
.anm_all .item {
  opacity: 0;
}
.anm_all .item.up {
  animation: up 0.7s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}

.trigger {
  opacity: 0;
}
.trigger.up {
  animation: up 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.blur {
  animation: blur 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.left {
  animation: left 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.right {
  animation: right 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s 1 normal forwards;
}
.trigger.delay0 {
  animation-delay: 0ms;
}
.trigger.delay1 {
  animation-delay: 100ms;
}
.trigger.delay2 {
  animation-delay: 200ms;
}
.trigger.delay3 {
  animation-delay: 300ms;
}
.trigger.delay4 {
  animation-delay: 400ms;
}
.trigger.delay5 {
  animation-delay: 500ms;
}
.trigger.delay6 {
  animation-delay: 600ms;
}
.trigger.delay7 {
  animation-delay: 700ms;
}
.trigger.delay8 {
  animation-delay: 800ms;
}
.trigger.delay9 {
  animation-delay: 900ms;
}
.trigger.delay10 {
  animation-delay: 1000ms;
}
.trigger.delay11 {
  animation-delay: 1100ms;
}
.trigger.delay12 {
  animation-delay: 1200ms;
}
.trigger.delay13 {
  animation-delay: 1300ms;
}
.trigger.delay14 {
  animation-delay: 1400ms;
}
.trigger.delay15 {
  animation-delay: 1500ms;
}
.trigger.delay16 {
  animation-delay: 1600ms;
}
.trigger.delay17 {
  animation-delay: 1700ms;
}
.trigger.delay18 {
  animation-delay: 1800ms;
}
.trigger.delay19 {
  animation-delay: 1900ms;
}
.trigger.delay20 {
  animation-delay: 2000ms;
}

@keyframes up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes left {
  0% {
    opacity: 0;
    transform: translateX(-5%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes right {
  0% {
    opacity: 0;
    transform: translateX(5%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
.btn_cm {
  text-align: center;
  place-content: center;
  display: block;
  margin: 0 auto;
  width: clamp(30rem, calc(1.3071895425vw + 29.4901960784rem), 32rem);
  max-width: 100%;
  height: 64px;
  background: #000;
  color: white;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn_cm:hover {
  transform: translateY(-1px);
  letter-spacing: 0.1em;
  background-color: rgb(25.5, 25.5, 25.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pc_left {
  display: none;
}
@media all and (min-width: 768px) {
  .pc_left {
    display: block;
    position: fixed;
    width: calc(100% - 375px);
    height: 100vh;
    background: #B4D4C1;
    place-content: center;
  }
  .pc_left .fb {
    width: 46%;
    max-width: 376px;
    margin: 30px auto 10px auto;
  }
  .pc_left .in2 {
    position: relative;
  }
  .pc_left .slw {
    position: relative;
    padding-bottom: 30px;
  }
  .pc_left .slw .in {
    width: 91%;
    margin: 0 0 0 auto;
    border-radius: 100px 0 0 100px;
    overflow: hidden;
    position: re;
  }
  .pc_left .mv_txt {
    position: absolute;
    width: 14.8%;
    left: 0;
    max-width: 120px;
  }
  .pc_left .mv_txt2 {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 43%;
  }
  .pc_left .swiper-horizontal > .swiper-pagination-bullets, .pc_left .swiper-pagination-bullets.swiper-pagination-horizontal, .pc_left .swiper-pagination-custom, .pc_left .swiper-pagination-fraction {
    text-align: right;
    padding-right: 40px;
  }
  .pc_left .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .pc_left .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 9px;
  }
}
@media all and (min-width: 1280px) {
  .pc_left {
    width: calc(100% - 625px);
  }
  .pc_left .in2 {
    max-width: 1400px;
  }
}
@media all and (min-width: 1470px) {
  .pc_left .in2 {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media all and (min-width: 2000px) {
  .pc_left .slw .in {
    border-radius: 100px;
  }
  .pc_left .mv_txt2 {
    border-radius: 100px;
    overflow: hidden;
  }
}

.pc-right {
  display: none;
}
@media all and (min-width: 1280px) {
  .pc-right {
    display: block;
    position: fixed;
    place-content: center;
    right: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    margin: 0 0 0 auto;
    background: url("../images/pcr1.png") top right no-repeat, url("../images/pcr2.png") bottom left no-repeat;
    background-size: 100% auto, 100% auto;
  }
  .pc-right .in {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .pc-right .menus a {
    margin: 0 auto;
    position: relative;
    width: 88px;
    display: block;
    margin-bottom: 24px;
  }
  .pc-right .menus a:before {
    content: "";
    position: absolute;
    top: 2px;
    left: -16px;
    width: 8px;
    height: 8px;
    background: #C2A853;
    transform: rotate(45deg);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .pc-right .menus a path {
    transition: all 0.3s ease;
  }
  .pc-right .menus a img {
    height: 11.4px;
    width: auto;
  }
  .pc-right .menus a.active:before {
    opacity: 1;
  }
  .pc-right .menus a.active path {
    fill: #5C8577;
  }
  .pc-right .menus a.hid:before {
    opacity: 0;
  }
  .pc-right .menus a.hid path {
    fill: #b7b7b7;
  }
  .pc-right .menus a.sct2:before {
    opacity: 1;
  }
  .pc-right .menus a.sct2 path {
    fill: #5C8577;
  }
}

.sp_wrap {
  width: 100%;
  margin: 0 auto;
  background: #B4D4C1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media all and (min-width: 767px) {
  .sp_wrap {
    margin: 0 0 0 auto;
    max-width: 375px;
    overflow: hidden;
  }
}
@media all and (min-width: 1280px) {
  .sp_wrap {
    margin: 0 250px 0 auto;
  }
}

.cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.cta.active {
  opacity: 1;
  visibility: visible;
}
.cta.hid {
  opacity: 0;
  visibility: hidden;
}
@media all and (min-width: 767px) {
  .cta {
    display: none;
  }
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #5C8577;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0px;
}

.mv {
  position: relative;
}
.mv .slw {
  position: relative;
  padding-bottom: 30px;
}
.mv .slw .in {
  width: calc(100% - 60px);
  margin: 0 0 0 auto;
  border-radius: 100px 0 0 100px;
  overflow: hidden;
}
.mv {
  overflow: hidden;
}
.mv_txt {
  position: absolute;
  width: 24%;
  top: 6%;
  left: 0;
  z-index: 2;
}
@media all and (min-width: 767px) {
  .mv {
    display: none;
  }
}

.lead {
  padding-top: 50px;
}
.lead .in1 {
  background: white;
  position: relative;
  margin-top: -1px;
  z-index: 2;
}

.present {
  overflow: hidden;
  padding-bottom: 20px;
}
.present .in {
  background: white;
  border-radius: 0 70px 70px 0;
  width: 94.5%;
  margin: 0 auto 0 0;
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.16);
}
.present .in2 {
  background: #EFEAE3;
  margin: 13.5% 0 0 auto;
  border-radius: 70px 0 0 70px;
}
.present .inbx {
  background: #E2F2F5;
  border-top: 2px solid #16A7CA;
  width: 83%;
  margin: 0 auto;
  border-radius: 0 0 30px 30px;
}
.present .inbx2 {
  background: #E4E8C4;
  border-top: 2px solid #B8C54F;
  width: 83%;
  margin: 0 auto;
  margin-top: 9%;
  border-radius: 0 0 30px 30px;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.you1 {
  width: 94.5%;
  margin: 0 0 0 auto;
  border-radius: 80px 0 0 0;
  overflow: hidden;
}

.howto {
  position: relative;
  margin-top: -1%;
}
.howto .in {
  background: #EFEAE3;
}
.howto .how3, .howto .how11 {
  position: relative;
}
.howto .how3 .upload, .howto .how11 .upload {
  width: 100%;
  position: absolute;
  bottom: 43%;
  left: 0;
}
.howto .how3 .online, .howto .how11 .online {
  width: 100%;
  position: absolute;
  bottom: 12%;
  left: 0;
}

.product {
  position: relative;
  margin-top: -15px;
}
.product .in {
  background: #DFE5E0;
}
.product .inbx {
  background: white;
  border-radius: 20px;
  width: 89.4%;
  margin: 30px auto 0 auto;
}
.product .product_ttl1 {
  position: relative;
  top: -30px;
}
.product .product_txt {
  margin-top: -30px;
}

.online2 {
  display: block;
  background: #DFE5E0;
}

.favo {
  background: #DFE5E0;
}
.favo .in {
  background: white;
}

.hash .cir6 {
  background: white;
}
.hash .in {
  background: #B4D4C1;
}
.hash .hash_in {
  position: relative;
}
.hash .hash_in .h21 {
  position: absolute;
  top: 8%;
  left: 0;
  width: 100%;
}
.hash .hash_in .h22 {
  position: absolute;
  top: 39%;
  left: 0;
  width: 100%;
}

.prof .cir7 {
  background: #B4D4C1;
}
.prof .in {
  background: #EFEAE3;
}
.prof .name {
  position: relative;
  margin-top: -90px;
}

.store .cir5 {
  background: #EFEAE3;
}
.store .in {
  background: white;
}

.upload_area .cir4 {
  background: white;
}
.upload_area .in {
  background: #DFE5E0;
}
.upload_area h2 {
  position: relative;
}
.upload_area a {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 24%;
  left: 0;
}

.caution .cir5 {
  background: #DFE5E0;
}
.caution .in {
  background: white;
  padding-bottom: 70px;
}
.caution .faq_wrap {
  width: 89.5%;
  margin: 0 auto;
}
.caution .fq-bx {
  margin-bottom: 15px;
  background: #EFEAE3;
  border-radius: 10px;
}
.caution .q {
  color: #3E3A39;
  font-size: 14px;
  font-weight: bold;
  padding: 15px 20px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 7.5px;
  position: relative;
  text-align: left;
  letter-spacing: 0.15em;
}
.caution .q i {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 20px;
  top: 19px;
  transition: all 0.3s ease;
}
.caution .q i:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.5px;
  width: 1px;
  height: 100%;
  background: #40866E;
  transition: all 0.3s ease;
}
.caution .q i:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5px;
  width: 100%;
  height: 1px;
  background: #40866E;
}
.caution .open i {
  transform: rotate(180deg);
}
.caution .open i:before {
  opacity: 0;
}
.caution .a {
  padding: 8px 20px;
  box-sizing: border-box;
  font-size: 12px;
  font-family: unset;
  font-feature-settings: normal;
  line-height: 2;
}
.caution .a .fb {
  font-weight: bold;
  color: #5C8577;
}
.caution .a .in {
  margin-bottom: 20px;
}
.caution .a .in:last-of-type {
  margin-bottom: 0;
}
.caution .a em {
  color: #386292;
  font-weight: bold;
  font-style: normal;
}
.caution .a .ins {
  margin-top: 20px;
  line-height: 1.6;
}
.caution .a .ins1 {
  margin-top: 0;
}
.caution .a .ins2 {
  margin-bottom: 20px;
}
.caution .a ul {
  margin-left: 16px;
}
.caution .a ul li {
  position: relative;
  padding-left: 0.75em;
}
.caution .a ul li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  width: 2.5px;
  height: 2.5px;
  background: #000;
  border-radius: 100%;
}
.caution .a a {
  text-decoration: underline;
  color: #386292;
  box-sizing: border-box;
}
.caution .fbl {
  margin-bottom: 0;
}

.contact .cir {
  background: white;
}

.acd_item {
  border-radius: 10px;
  border: 1px solid #3E3A39;
  width: 88%;
  margin: 8% auto 0 auto;
}
.acd_item .pi1 {
  position: relative;
  margin-top: -10%;
}
.acd_item .pi2 {
  display: none;
}
.acd_item .pi2.open {
  display: block;
}
.acd_item .cl {
  display: none;
}
.acd_item .act .cl {
  display: block;
}
.acd_item .act .nx {
  display: none;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
  position: relative;
  height: 176px;
  width: 240px;
  margin: 0 auto;
}
.cards .or {
  position: absolute;
  width: 44px;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  z-index: 3;
}
.cards .card {
  position: relative;
  cursor: pointer;
}
.cards .card div {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.7s;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  background: #16A7CA;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background: none;
}
.cards .card div img {
  width: 112px;
  height: 178px;
}
.cards .card div .kira {
  position: absolute;
  top: -11px;
  left: -20px;
  box-shadow: none;
  height: 184px;
  min-width: 147px;
}
.cards .card .ura {
  transform: rotateY(-180deg);
}
.cards .card:hover .omote {
  transform: rotateY(180deg);
}
.cards .card:hover .ura {
  transform: rotateY(0);
}
.cards .cd12 {
  pointer-events: none;
}
.cards .cd12 .omote {
  overflow: visible;
}

.form button {
  transition: all 0.3s ease;
}
.form button:hover {
  opacity: 0.6;
}
.form_lead {
  margin-top: -5%;
  position: relative;
  z-index: 2;
}
.form_lead .in1 {
  background: white;
}
.form_lead .inbx {
  background: #EFEAE3;
  border-radius: 20px;
  width: 89.5%;
  margin: 0 auto;
}
.form_main {
  background: white;
  padding-top: 40px;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.form_main .in {
  background: #EFEAE3;
  border-radius: 20px;
  width: 89.5%;
  margin: 0 auto;
}

.p-entry-form {
  width: calc(100% - 40px);
  padding-bottom: 40px;
  margin: 0 auto;
}
.p-entry-form__block {
  margin-bottom: 40px;
}
.p-entry-form__block label {
  font-weight: bold;
  font-size: 16px;
  position: relative;
  padding-left: 51px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.p-entry-form__block label span {
  display: block;
  width: 41px;
  position: absolute;
  left: 0;
  top: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
}
.p-entry-form__block label em {
  font-style: normal;
  display: block;
}
.p-entry-form__block label .required {
  background: #C0C982;
  color: white;
}
.p-entry-form__block label .nin {
  background: #B7B7B7;
  color: white;
}
.p-entry-form__body {
  margin-top: 10px;
}
.p-entry-form__body--flex {
  display: flex;
  justify-content: flex-start;
  gap: 0 10px;
  align-items: center;
}
.p-entry-form__body input[type=text], .p-entry-form__body input[type=email], .p-entry-form__body textarea {
  background: white;
  border-radius: 5px;
  width: 100%;
  min-height: 44px;
  padding: 10px 20px;
  box-sizing: border-box;
}
.p-entry-form__body #tel {
  max-width: 163px;
}
.p-entry-form__body #zipcode {
  max-width: 127px;
}
.p-entry-form__body .visually-hidden, .p-entry-form__body .p-file__filename {
  display: none;
}
.p-entry-form__body .p-file__label {
  padding: 0;
  color: white;
  background: #9A9A9A;
  border-radius: 5px;
  display: block;
  width: 205px;
  height: 45px;
  place-content: center;
  text-align: center;
}
.p-entry-form__body .reci {
  margin-top: 10px;
}
.p-entry-form__body textarea {
  min-height: 150px;
}

.c-note {
  margin-top: 10px;
  font-size: 12px;
}

.p-radio,
.p-checkbox {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 14px 0;
}

.p-radio input[type=radio],
.p-radio input[type=checkbox],
.p-checkbox input[type=radio],
.p-checkbox input[type=checkbox] {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

.p-radio label,
.p-checkbox label {
  font-size: 16px;
  line-height: 1.4375;
  position: relative;
  box-sizing: border-box;
  padding-left: 30px;
  cursor: pointer;
  color: #333333;
}

.p-radio label::before,
.p-checkbox label::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 22px;
  height: 22px;
  content: "";
  transition: border-color 0.2s;
  transform: translateY(-50%);
  border: 1px solid #47393e;
  border-radius: 50%;
  background-color: #f4f4f4;
}

.p-radio label::after,
.p-checkbox label::after {
  position: absolute;
  top: 23px;
  left: 6px;
  width: 32px;
  height: 32px;
  content: "";
  transition: opacity 0.2s;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #dc91a1;
}

.p-radio input[type=radio]:checked + label::after,
.p-radio input[type=checkbox]:checked + label::after,
.p-checkbox input[type=radio]:checked + label::after,
.p-checkbox input[type=checkbox]:checked + label::after {
  opacity: 1;
}

.p-radio.age .adjust {
  width: 96px;
}

.p-checkbox.agreement label {
  margin: 0 auto;
}

.p-checkbox.agreement label a {
  color: #b96a7e;
  text-decoration: underline;
}

.p-checkbox.agreement label a:hover {
  text-decoration: none;
}

.p-checkbox.agreement label::before {
  border-radius: 5px;
  border: 0;
}

.p-checkbox.agreement label::after {
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 6px;
  width: 10px;
  height: 6px;
  content: "";
  transition: opacity 0.2s;
  transform: translateY(-60%) rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid #dc91a1;
  border-left: 2px solid #dc91a1;
  border-radius: 0;
  background-color: initial;
}

.p-radio label {
  font-size: 16px;
  font-weight: normal;
}

.p-radio label::after, .p-checkbox label::after {
  position: absolute;
  top: 11px;
  left: 3.5px;
  width: 15px;
  height: 15px;
  content: "";
  transition: opacity 0.2s;
  transform: translateY(-50%);
  opacity: 0;
  border-radius: 50%;
  background-color: #5C8577;
}

.p-checkbox label::before {
  background-color: white;
}

.p-checkbox.agreement label {
  font-weight: normal;
}

.p-checkbox.agreement label::after {
  left: 6px;
}

.agreement {
  display: block;
}

.p-file__label {
  cursor: pointer;
  transition: all 0.3s ease;
}
.p-file__label:hover {
  opacity: 0.7;
}

.c-btn {
  transition: all 0.3s ease;
}
.c-btn:hover {
  opacity: 0.7;
}

.movie_wrap {
  place-content: center;
  width: 100vw;
  height: 100vh;
}
.movie_wrap video {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.vd {
  width: 100%;
  aspect-ratio: 16/9;
}
.vd iframe {
  width: 100%;
  height: 100%;
}

.vdm {
  max-width: 1400px;
  margin: 0 auto;
}

/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3Nhc3MvYmFzZS5zY3NzIiwiLi4vc2Fzcy9fc2V0LnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUlBO0VBQ0U7OztBQUdGO0VBQ0U7RUFDQTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBRUE7O0FDcUNBO0VEbERGO0lBZUk7Ozs7QUFNSjtFQUNFO0VBQ0E7RUFDQTs7O0FBR0Y7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7RUFDRTtFQUNBOzs7QUFJRjtFQUNFO0VBQ0E7RUFDQTs7QUFFQTtFQUNFOzs7QUFNSjtFQUNFOztBQ05BO0VES0Y7SUFHSTs7OztBQUlKO0VBQ0U7O0FDYkE7RURZRjtJQUlJOzs7O0FBTUo7QUFBQTtBQUFBO0FBR0E7RUFDRTtFQUNBO0VBQ0E7OztBQUdGO0VBQ0U7RUFDQTtFQUNBOzs7QUFHRjtBQUFBO0FBQUE7QUFJQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTtFQUNBOzs7QUFLRjtFQ2hGQTtFQUNBLGlCRGdGZTtFQy9FZixhQUgwQztFQUkxQyxXQUp5RDtFRG1GdkQ7OztBQy9ERjtFRHNFQTtJQUNFO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUVBO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUdGO0lBQ0U7SUFDQTs7RUFHRjtJQUNFOztFQUdGO0lBQ0U7O0VBTUY7SUFDRTs7RUFHRjtJQUNFO0lBQ0E7O0VBR0Y7SUFDRTtJQUNBOztFQUtKO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFHQTtJQUNBO0lBQ0E7SUFDQTs7RUFFQTtJQUNFO0lBQ0E7O0VBRUE7SUFDRTs7RUFFQTtJQUVFO0lBQ0E7O0VBT1I7SUFDRTtJQUNBO0lBQ0E7OztBQUtKO0FBQUE7QUFBQTtBQUdBO0VBQ0U7RUFFQTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTtFQUNBOzs7QUFJSjtFQUNFO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUVBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTtFQUNBO0VBQ0E7RUFDQTs7QUFFQTtFQUNFO0VBQ0E7RUFDQTs7O0FBSUo7RUFDRTtFQUNBOzs7QUFHRjtFQUNFOztBQUNFO0VBQ0M7OztBQUtMO0FBQUE7QUFBQTtBQUlBO0VBQ0U7OztBQUlBO0VBQ0U7O0FBR0Y7RUFDRTs7QUFFQTtFQUNFOzs7QUFLTjtFQUNFOztBQUVBO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBSUE7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7O0FBREY7RUFDRTs7QUFERjtFQUNFOztBQURGO0VBQ0U7OztBQUtOO0VBQ0U7SUFDRTtJQUNBOztFQUdGO0lBQ0U7SUFDQTs7O0FBR0o7RUFDRTtJQUNFO0lBQ0E7O0VBR0Y7SUFDRTtJQUNBOzs7QUFHSjtFQUNFO0lBQ0U7SUFDQTs7RUFHRjtJQUNFO0lBQ0E7OztBQUdKO0VBQ0U7SUFDRTtJQUNBOztFQUdGO0lBQ0U7SUFDQTs7O0FBSUo7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFFQTs7QUFNQTtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFXSjtFQUNFOztBQUNBO0VBRkY7SUFHSTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7O0VBQ0E7SUFDRTtJQUNBO0lBQ0E7O0VBRUY7SUFDRTs7RUFFRjtJQUNFO0lBQ0E7O0VBQ0E7SUFDRTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUdKO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7O0VBRUY7SUFDRTtJQUNBO0lBQ0E7SUFDQTs7RUFFRjtJQUNFO0lBQ0E7O0VBRUY7SUFDRTs7O0FBR0g7RUFoREg7SUFpREs7O0VBQ0E7SUFDRTs7O0FBR0w7RUFDRTtJQUNFO0lBQ0E7OztBQU9IO0VBQ0U7SUFDRTs7RUFHRjtJQUNFO0lBQ0E7Ozs7QUFJUDtFQUNFOztBQUNDO0VBRkg7SUFHSztJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTs7RUFDQTtJQUNFO0lBQ0E7O0VBR0E7SUFDRTtJQUNBO0lBQ0E7SUFDQTtJQUNBOztFQUNBO0lBQ0U7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7O0VBRUY7SUFDRTs7RUFFRjtJQUNFO0lBQ0E7O0VBR0E7SUFDRTs7RUFFRjtJQUNFOztFQUtGO0lBQ0U7O0VBRUY7SUFDRTs7RUFJRjtJQUNFOztFQUVGO0lBQ0U7Ozs7QUFPYjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0M7RUFOSDtJQU9LO0lBQ0E7SUFDQTs7O0FBRUY7RUFYSDtJQVlLOzs7O0FBSUw7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFqQkY7SUFrQkk7Ozs7QUFLSjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBRUY7RUFDRTs7O0FBRUY7RUFDRTs7O0FBS0Y7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFUTjtFQVlFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFHRDtFQXJCSDtJQXNCSzs7OztBQUlMO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0o7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdKO0VBQ0U7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7OztBQUdKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0VBQ0U7RUFDQTs7QUFDQTtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFJTjtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTs7QUFHRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOzs7QUFHSjtFQUNFO0VBQ0E7OztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTs7O0FBSUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOzs7QUFLSjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBOzs7QUFJRjtFQUNFOztBQUVGO0VBQ0U7OztBQUlGO0VBQ0U7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBSUY7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7O0FBR0Y7RUFDRTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUtKO0VBQ0U7O0FBQ0E7RUFDRTs7QUFJTjtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0FBRUY7RUFDRTs7QUFDQTtFQUNFOztBQUdKO0VBQ0U7RUFDQTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFNTjtFQUNFO0VBQ0E7RUFDQTs7QUFHSjtFQUNFOzs7QUFLRjtFQUNFOzs7QUFJSjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7QUFFRjtFQUNFOztBQUNBO0VBQ0U7O0FBSUo7RUFDRTs7QUFHQTtFQUNFOztBQUVGO0VBQ0U7OztBQUtOO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFDQTtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBSUo7RUFDRTs7QUFHRTtFQUNFOztBQUVGO0VBQ0U7O0FBSVI7RUFDRTs7QUFDQTtFQUNFOzs7QUFPSjtFQUNFOztBQUNFO0VBQ0U7O0FBR047RUFDRTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTs7QUFFRjtFQUNFO0VBQ0E7RUFDQTtFQUNBOztBQUdKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBQ0E7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7O0FBSU47RUFDRTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTs7QUFDQTtFQUNFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7QUFFRjtFQUNFO0VBQ0E7O0FBRUY7RUFDRTtFQUNBOztBQUVGO0VBQ0U7RUFDQTs7QUFJTjtFQUNFOztBQUNBO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFFRjtFQUNFOztBQUVGO0VBQ0U7O0FBRUY7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7O0FBRUY7RUFDRTs7QUFHRjtFQUNFOzs7QUFJTjtFQUNFO0VBQ0E7OztBQUlGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7OztBQUdGO0FBQUE7QUFBQTtBQUFBO0VBSUU7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUVGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7QUFBQTtFQUVFO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7OztBQUdGO0FBQUE7RUFFRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFHRjtBQUFBO0FBQUE7QUFBQTtFQUlFOzs7QUFFRjtFQUNFOzs7QUFHRjtFQUNFOzs7QUFFRjtFQUNFO0VBQ0E7OztBQUVGO0VBQ0U7OztBQUVGO0VBQ0U7RUFDQTs7O0FBR0Y7RUFDRTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBOzs7QUFPQTtFQUNFO0VBQ0E7OztBQUlKO0VBQ0U7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTtFQUNBO0VBQ0E7RUFDQTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTs7O0FBRUY7RUFDRTs7O0FBR0Y7RUFDRTs7O0FBR0Y7RUFDRTtFQUNBOztBQUNFO0VBQ0o7OztBQUdBO0VBQ0U7O0FBQ0U7RUFDRTs7O0FBTU47RUFDRTtFQUNBO0VBQ0E7O0FBRUE7RUFDRTtFQUNBO0VBQ0E7RUFDQTs7O0FBSUo7RUFDRTtFQUNBOztBQUNBO0VBQ0U7RUFDQTs7O0FBSUo7RUFDRTtFQUNBIiwiZmlsZSI6ImJhc2UuY3NzIiwic291cmNlUm9vdCI6IiJ9 */