@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(49, 49, 49);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.mini {
  max-width: 900px;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.contact-button {
  display: block;
  width: 214px;
  padding: 8px 10px 10px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.11%, #D09D22), color-stop(103.7%, #CCBA0D));
  background: linear-gradient(90deg, #D09D22 11.11%, #CCBA0D 103.7%);
  -webkit-box-shadow: 0px 0px 8px rgb(255, 255, 255);
          box-shadow: 0px 0px 8px rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  gap: 5px;
  font-size: 18px;
}
@media (max-width: 1023px) {
  .contact-button {
    width: 190px;
  }
}
.contact-button img {
  margin: 0;
  width: 30px;
}
.contact-button:hover {
  -webkit-box-shadow: 0px 0px 15px rgb(255, 255, 255);
          box-shadow: 0px 0px 15px rgb(255, 255, 255);
}

.site-title {
  margin-bottom: 40px;
}
.site-title img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  max-width: 100%;
  height: 50px;
}
@media (max-width: 767px) {
  .site-title img {
    height: 37px;
  }
}

.color-white {
  color: rgb(255, 255, 255);
}

.bg-purple {
  background-color: rgb(130, 106, 138);
}

header {
  position: relative;
  z-index: 1000;
}
header .sp-btn-wrapper {
  display: contents;
}
@media (max-width: 767px) {
  header .sp-btn-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 20px;
  }
  header .sp-btn-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
  }
}
header .contact-button {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media (max-width: 767px) {
  header .contact-button {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }
}

.top-text {
  position: absolute;
  top: 7.5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 35%;
  max-width: 447px;
}

.cinema-bg-section {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1280/880;
  padding: 139px 0 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1100px) {
  .cinema-bg-section {
    padding-top: 6vw;
  }
}
@media (max-width: 767px) {
  .cinema-bg-section {
    aspect-ratio: 393/700;
    padding-top: 12vw;
  }
}
.cinema-bg-section::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/cinema-bg.jpg");
}
.cinema-bg-section .cinema-image {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cinema-bg-section .cinema-message {
  width: 45%;
}
@media (max-width: 1023px) {
  .cinema-bg-section .cinema-message {
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cinema-bg-section .cinema-message {
    width: calc(100% - 49px);
  }
}

.subject-section {
  padding-top: 165px;
  position: relative;
}
@media (max-width: 767px) {
  .subject-section {
    padding-top: 168px;
  }
}
.subject-section::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(49, 49, 49)), to(rgb(130, 106, 138)));
  background: linear-gradient(180deg, rgb(49, 49, 49) 0%, rgb(130, 106, 138) 100%);
}

.subject-text {
  padding-top: 22px;
  font-size: 18px;
  letter-spacing: -1.1px;
}
@media (max-width: 767px) {
  .subject-text {
    text-align: left;
    font-size: 16px;
  }
  .subject-text .inlineblock-item {
    display: inline;
  }
}

.plan-section {
  position: relative;
  padding-top: 85px;
}
@media (max-width: 767px) {
  .plan-section {
    padding-top: 79px;
  }
}
.plan-section::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(130, 106, 138)), to(rgb(1, 17, 70)));
  background: linear-gradient(180deg, rgb(130, 106, 138) 0%, rgb(1, 17, 70) 100%);
}

.plan-table {
  max-width: 1080px;
  margin: auto;
}
.plan-table th, .plan-table td {
  font-size: 18px;
  padding: 13px 10px 13px 27px;
  text-align: left;
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .plan-table th, .plan-table td {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 9px 18px;
  }
}
.plan-table th {
  width: 140px;
  font-weight: 400;
  background-color: rgb(242, 214, 219);
}
@media (max-width: 767px) {
  .plan-table th {
    width: 100%;
    padding: 7px 18px;
  }
}

.flow-section {
  padding-bottom: 70px;
  padding-top: 40px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(1, 17, 70)), to(rgb(130, 106, 138)));
  background: linear-gradient(180deg, rgb(1, 17, 70) 0%, rgb(130, 106, 138) 100%);
}
@media (max-width: 767px) {
  .flow-section {
    padding-bottom: 76px;
    padding-top: 50px;
  }
}
.flow-section .site-title {
  margin-bottom: 95px;
}

.flow-wrapper {
  max-width: 640px;
  margin: auto;
}
@media (max-width: 767px) {
  .flow-wrapper {
    max-width: 300px;
  }
}

.flow-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px 30px;
}
@media (max-width: 767px) {
  .flow-box {
    gap: 19px;
  }
}
.flow-box:not(:last-child) {
  margin-bottom: 88px;
}
@media (max-width: 767px) {
  .flow-box:not(:last-child) {
    margin-bottom: 36px;
  }
}
.flow-box:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/flow/line.svg");
}
@media (max-width: 767px) {
  .flow-box:not(:last-child)::after {
    background-image: url("../../images/flow/line-sp.svg");
  }
}
.flow-box .step-box {
  margin-left: 23px;
  max-width: 245px;
  width: 45%;
}
@media (max-width: 767px) {
  .flow-box .step-box {
    width: 100%;
    margin-left: 0;
  }
}
.flow-box .step-image {
  position: relative;
  padding-left: 15px;
}
.flow-box .step-image::after {
  position: absolute;
  bottom: -3px;
  left: -11px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  content: "";
  display: block;
  width: 260px;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.11%, rgb(242, 214, 219)), color-stop(103.7%, rgb(152, 151, 194)));
  background: linear-gradient(90deg, rgb(242, 214, 219) 11.11%, rgb(152, 151, 194) 103.7%);
}
.flow-box .step-image img {
  width: auto;
  height: 51px;
  margin: 0;
}
.flow-box .flow-icon {
  margin-top: -22px;
  margin-right: 0;
  max-width: 150px;
}
.flow-box .contents-box {
  padding-top: 23px;
  margin-right: 23px;
  max-width: 300px;
  width: calc(55% - 30px);
}
@media (max-width: 767px) {
  .flow-box .contents-box {
    width: 100%;
    padding-top: 0;
    margin-right: 0;
  }
}
.flow-box .flow-title {
  margin-bottom: 17px;
}
@media (max-width: 767px) {
  .flow-box .flow-title {
    margin-bottom: 15px;
  }
}
.flow-box .flow-title.big {
  margin-bottom: 30px;
}
.flow-box .flow-title img {
  width: auto;
  height: 33px;
}
@media (max-width: 767px) {
  .flow-box .flow-title img {
    height: 30px;
  }
}
.flow-box .bg-text {
  margin-bottom: 15px;
  color: rgb(46, 51, 75);
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, right top, color-stop(11.11%, rgb(242, 214, 219)), color-stop(103.7%, rgb(152, 151, 194)));
  background: linear-gradient(90deg, rgb(242, 214, 219) 11.11%, rgb(152, 151, 194) 103.7%);
}
@media (max-width: 767px) {
  .flow-box .bg-text {
    padding: 3px 0;
    margin-bottom: 17px;
  }
}
.flow-box .main-text {
  font-weight: 400;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .flow-box .main-text {
    letter-spacing: normal;
    line-height: 24px;
  }
}

.price-section {
  padding-bottom: 90px;
  background-color: rgb(36, 41, 88);
}
.price-section .contents-wrapper {
  max-width: 1080px;
}

.price-title {
  cursor: pointer;
  padding: 10px 20px 10px 36px;
  display: block;
  width: 100%;
  text-align: left;
  font-weight: 500;
  font-size: 20px;
  border: 1px solid rgb(204, 204, 204);
  background: -webkit-gradient(linear, left top, right top, from(rgb(242, 214, 219)), to(rgb(152, 151, 194)));
  background: linear-gradient(90deg, rgb(242, 214, 219) 0%, rgb(152, 151, 194) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .price-title {
    padding: 10px 18px;
  }
}
.price-title::after {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 12/6;
  background-color: rgb(255, 255, 255);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.price-title span {
  pointer-events: none;
}
.price-title.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.price-main-box {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  overflow: hidden;
  max-height: 0;
}
.price-main-box.is-open {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  max-height: var(--max-height);
  opacity: 1;
}

.scroll-wrapper {
  overflow: scroll;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.price-note {
  margin-top: 7px;
  line-height: 28px;
}

.price-table {
  min-width: 1055px;
}
.price-table th, .price-table td {
  color: rgb(0, 0, 0);
  font-weight: 400;
  padding: 7.5px 18px;
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(255, 255, 255);
}
.price-table th.border, .price-table td.border {
  border-width: 1px 1px 4px;
}
.price-table tr:nth-child(even) .theater-td,
.price-table tr:nth-child(even) .screen-td {
  background-color: rgb(236, 235, 239);
}
.price-table .bg-purple {
  padding: 5px;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  background-color: rgb(123, 122, 176);
}
.price-table .bg-purple .small {
  font-size: 14px;
}
.price-table .prefectures {
  width: 112px;
}
.price-table .theater {
  width: 394px;
}
.price-table .screen {
  width: 192px;
}
.price-table .screen-td {
  padding-left: 62px;
}
.price-table .theater-td {
  letter-spacing: -1.5px;
}
.price-table .price {
  width: 191px;
  padding-left: 25px;
}
.price-table .price .day {
  display: inline-block;
  width: 60px;
}

.contact-section {
  position: relative;
  padding-bottom: 140px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(242, 214, 219)), to(rgb(152, 151, 194)));
  background: linear-gradient(90deg, rgb(242, 214, 219) 0%, rgb(152, 151, 194) 100%);
}
@media (max-width: 1023px) {
  .contact-section {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding-block: 90px;
  }
}
.contact-section .contact-ribbon {
  position: absolute;
  width: 40%;
}
@media (max-width: 767px) {
  .contact-section .contact-ribbon {
    display: none;
  }
}
.contact-section .contact-ribbon.top {
  top: 0;
  left: 0;
  max-width: 441px;
}
.contact-section .contact-ribbon.bottom {
  bottom: 0;
  right: 0;
  max-width: 400px;
}
.contact-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .contact-section .site-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .contact-section .site-title img {
    height: 85px;
  }
}
.contact-section .contact-button {
  width: 244px;
  padding: 10px;
  gap: 20px;
  margin: 45px auto 0;
}
@media (max-width: 767px) {
  .contact-section .contact-button {
    width: 100%;
    margin-top: 22px;
    font-size: 24px;
    max-width: 273px;
  }
}

.contact-text {
  letter-spacing: -1.5px;
  padding-top: 13px;
}
@media (max-width: 767px) {
  .contact-text {
    text-align: left;
    font-size: 16px;
    line-height: 30px;
  }
  .contact-text .inlineblock-item {
    display: inline;
  }
}

@media (max-width: 767px) {
  footer > img {
    aspect-ratio: 393/238;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}

.copy-light {
  padding: 15px;
  text-align: center;
  font-size: 14px;
  background-color: rgb(5, 5, 5);
}
@media (max-width: 767px) {
  .copy-light {
    padding-bottom: 100px;
    font-size: 12px;
  }
}

.contact-page {
  background-color: rgb(36, 41, 88);
  color: rgb(255, 255, 255);
}
.contact-page .copy-light {
  padding-bottom: 20px;
}

.contact-page-section {
  padding-top: 80px;
  padding-bottom: 200px;
}
.contact-page-section .contents-wrapper {
  max-width: 665px;
}
.contact-page-section.thanks .contact-button-wrapper {
  margin-bottom: 0;
}

.contact-top-title {
  margin-bottom: 110px;
}
.contact-top-title img {
  max-width: 90%;
  width: auto;
  height: 89px;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-first-text {
  margin-bottom: 95px;
  letter-spacing: -1px;
  line-height: 32px;
}

.contact-wrapper {
  margin-bottom: 90px;
}
.contact-wrapper .big-title {
  padding-bottom: 21px;
  font-weight: 500;
  font-size: 20px;
}
.contact-wrapper.customer {
  margin-bottom: 97px;
}
.contact-wrapper.customer .contact-box:not(:last-child) {
  margin-bottom: 32px;
}

.contact-form {
  margin-bottom: 102px;
}

.contact-box {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(85, 85, 85);
}
.contact-box:not(:last-child) {
  margin-bottom: 37px;
}
.contact-box .title {
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}
.contact-box .title.must::before {
  content: "必須";
  font-weight: 700;
  display: inline-block;
  font-size: 10px;
  background-color: rgb(151, 71, 255);
  color: rgb(255, 255, 255);
  padding: 3px 6px;
  border-radius: 2px;
  margin-right: 10px;
}
.contact-box .small-text {
  font-size: 12px;
  font-weight: 400;
  margin-left: 10px;
}
.contact-box .select-box {
  position: relative;
}
.contact-box .select-box::before {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 8/5;
  background-color: rgb(0, 0, 0);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}
.contact-box .select-box::after {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 24px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.contact-box .select-box select {
  color: rgb(49, 49, 49);
  padding: 11px 24px 11px 14px;
}
.contact-box .select-box select:invalid {
  color: rgb(204, 204, 204);
}
.contact-box .select-box option {
  color: rgb(49, 49, 49);
}
.contact-box .select-box option[value=""] {
  color: rgb(204, 204, 204);
}
.contact-box textarea {
  display: block;
  padding: 10px;
  width: 100%;
  height: 112px;
  border-radius: 2px;
}
.contact-box input {
  display: block;
  width: 100%;
  padding: 11px;
}
.contact-box input ::-webkit-input-placeholder {
  color: rgb(204, 204, 204);
}
.contact-box input ::-moz-placeholder {
  color: rgb(204, 204, 204);
}
.contact-box input :-ms-input-placeholder {
  color: rgb(204, 204, 204);
}
.contact-box input ::-ms-input-placeholder {
  color: rgb(204, 204, 204);
}
.contact-box input ::placeholder {
  color: rgb(204, 204, 204);
}
.contact-box .full-select {
  display: block;
  width: 100%;
}
.contact-box .mini-select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
@media (max-width: 767px) {
  .contact-box .mini-select-box {
    gap: 15px;
  }
}
.contact-box .mini-select-box.time {
  gap: 18px;
}
.contact-box .mini-select-box.time .time {
  margin-left: 11px;
}
.contact-box .mini-select-box .inner-box {
  gap: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-box .mini-select-box .select-box {
  width: 96px;
}
@media (max-width: 767px) {
  .contact-box .mini-select-box .select-box {
    width: 81px;
  }
  .contact-box .mini-select-box .select-box select {
    padding: 11px 7px;
  }
}

.submit-button {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 12px 0;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  font-weight: 500;
}
.submit-button.white {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
}
.submit-button img {
  width: 12px;
  margin: 0;
}
.submit-button:hover {
  -webkit-box-shadow: 0px 0px 15px rgb(255, 255, 255);
          box-shadow: 0px 0px 15px rgb(255, 255, 255);
}

.contact-confirmation .contact-box:not(:last-child) {
  margin-bottom: 36px;
}
.contact-confirmation .contact-box .title {
  margin-bottom: 20px;
}
.contact-confirmation .contact-box .input-box {
  padding-bottom: 10px;
  padding-left: 10px;
}
.contact-confirmation .mini-select-box {
  gap: 35px;
}
.contact-confirmation .mini-select-box .inner-box span:not(.time) {
  display: inline-block;
  width: 59px;
}
@media (max-width: 767px) {
  .contact-confirmation .mini-select-box .inner-box span:not(.time) {
    width: auto;
  }
}

.contact-button-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 60px;
}
.contact-button-wrapper .submit-button {
  margin: 0;
  padding: 15px 5px;
  width: 217px;
  font-size: 16px;
}
#verisign {
  margin: 20px 0;
  padding: 20px;
  background: #EEE
}

#verisign .verisignImage {
  float: left;
  width: 130px
}

#verisign .txt {
  padding-left: 80px;
  font-size: 90%;
  color: #333;
  margin: 0
}
/*# sourceMappingURL=main.css.map */