@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&family=Shippori+Antique+B1&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: #222222;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  height: auto;
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  line-height: 1.5;
}

.body_frame_left, .body_frame_right {
  width: 50%;
}
.body_frame_left {
  background-color: #222222;
}
.body_frame_right {
  border-left: 24px solid #767676;
  border-right: 24px solid #767676;
}
@media screen and (max-width: 839px) {
  .body_frame_left, .body_frame_right {
    width: 100%;
  }
  .body_frame_right {
    border-left: 12px solid #767676;
    border-right: 12px solid #767676;
  }
}

.container {
  width: 90%;
  padding: 70px 0;
  margin: 0 auto;
}
@media screen and (max-width: 839px) {
  .container {
    padding: 50px 0;
  }
}

.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 839px) {
  .flex_box {
    flex-direction: column;
  }
}

.btn {
  border: 2px solid #C4A500;
  padding: 10px 30px;
  background-color: #C4A500;
  color: #ffffff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.btn:hover {
  background-color: #ffffff;
  color: #C4A500;
}
.btn_box {
  text-align: center;
}

.head_text {
  width: 100%;
  max-width: 350px;
  margin: 0 auto 35px;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
}
.head_text span {
  display: block;
  margin-bottom: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 0;
}
.head_text_border {
  padding: 10px 10px;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.head_text_center {
  text-align: center;
}
.head_text_yellow {
  border-color: #C4A500;
  color: #C4A500;
}
.head_text_yellow span {
  color: #C4A500;
}
.head_text_white {
  border-color: #ffffff;
  color: #ffffff;
}
.head_text_white span {
  color: #ffffff;
}
.head_text_gray {
  border-color: #767676;
  color: #767676;
}
.head_text_gray span {
  color: #222222;
}
@media screen and (max-width: 839px) {
  .head_text {
    font-size: 3.6rem;
  }
  .head_text span {
    margin-bottom: 13px;
  }
  .head_text_border {
    padding: 5px;
  }
}

.comming_soon {
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 4rem;
}
.comming_soon_white {
  color: #ffffff;
}
.comming_soon_blue {
  color: #767676;
}
@media screen and (max-width: 839px) {
  .comming_soon {
    font-size: 3rem;
  }
}

.scroll_top {
  width: 70px;
  aspect-ratio: 1/1;
  position: fixed;
  bottom: 15px;
  right: 15px;
}
.scroll_top:hover {
  opacity: 0.7;
}

@media screen and (min-width: 840px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 839px) {
  .only_pc {
    display: none;
  }
}
.targetFadeIn {
  opacity: 0;
}

.targetFadeInC {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUpC {
  animation-name: fadeUpCAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpCAnime {
  from {
    opacity: 0;
    transform: translate(-50%, 100px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}
.header {
  width: 50%;
  height: 100vh;
  font-family: "Shippori Antique B1", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
}
.header_bg_slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.header_bg_slider li.slick-slide {
  width: 100%;
  height: 100%;
}
.header_bg_slider img {
  width: 100%;
  height: 100%;
}
.header .slick-slider .slick-list {
  height: 100%;
}
.header .slick-slider .slick-track {
  height: 100%;
}
.header_content {
  width: 90%;
  max-width: 760px;
  border: 14px solid #C4A500;
  padding: 20px 10px;
  background-color: #ffffff;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 5px 5px 50px #000000;
  animation: show 2s ease;
}
.header_content_menu {
  margin-bottom: 20px;
  justify-content: center;
  align-items: center;
  gap: 40px 7%;
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header_logo {
  flex: 1;
  max-width: 200px;
}
.header nav ul {
  gap: 5px;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 1060px) {
  .header nav ul {
    gap: 7px;
    font-size: 2rem;
  }
}
.header nav a:hover {
  color: #C4A500;
}
.header_copyright {
  color: #767676;
  text-align: center;
  font-size: 1.4rem;
}
.header_burger_text {
  border-bottom: 1px solid;
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
  position: absolute;
  right: 20px;
  transition: 0.3s ease;
  cursor: pointer;
}
.header_burger_text.menu {
  border-color: #C4A500;
  color: #C4A500;
  top: 50%;
  transform: translateY(-50%);
}
.header_burger_text.close {
  border-color: #ffffff;
  color: #ffffff;
  top: 18px;
}
.header_burger_text:hover {
  opacity: 0.7;
}
@media screen and (max-width: 839px) {
  .header {
    width: 100%;
    height: 70px;
    z-index: 2;
    background: transparent;
  }
  .header_bg_slider {
    visibility: hidden;
  }
  .header_content {
    width: 100%;
    max-width: none;
    padding: 100px 20px 40px;
    border: none;
    background-color: #C4A500;
    color: #ffffff;
    top: 0;
    bottom: auto;
    left: 100%;
    transform: translate(0, 0);
    z-index: 2;
  }
  .header_content.opened {
    left: 0;
    animation: slideIn 0.5s ease;
  }
  @keyframes slideIn {
    0% {
      top: 0;
      left: 100%;
      transform: translate(0, 0);
    }
    100% {
      left: 0;
    }
  }
  .header_logo {
    width: 150px;
  }
  .header nav ul {
    gap: 10px;
    font-size: 2rem;
  }
  .header nav a:hover {
    opacity: 0.7;
    color: #ffffff;
  }
  .header_copyright {
    color: rgba(255, 255, 255, 0.7);
  }
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
}
.main_visual {
  background-image: url(../img/mv_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}
.main_visual:before {
  content: "";
  width: 100%;
  height: 230px;
  background: linear-gradient(to bottom, #767676, rgba(136, 136, 136, 0));
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual .container {
  max-width: 470px;
  padding-bottom: 300px;
  animation: fadeUpAnime 1.5s ease;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main_visual img {
  width: 145px;
  margin: 0 auto;
}
.main_visual_msg {
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.main_visual_guide {
  display: inline-block;
  padding: 5px 60px;
  background-color: #222222;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.main_visual .head_text {
  width: auto;
  max-width: none;
  margin-bottom: 0;
  line-height: 1.5;
}
.main_visual .head_text_yellow {
  margin: 10px 0;
  display: inline-block;
  padding: 0 25px;
  background-color: #000000;
  font-size: 6.4rem;
}
.main_visual .head_text_gray {
  font-size: 4rem;
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 839px) {
  .main_visual:before {
    height: 100px;
  }
  .main_visual .container {
    padding-bottom: 150px;
  }
  .main_visual .head_text_yellow {
    padding: 0 15px;
    font-size: 4.5rem;
  }
  .main_visual .head_text_blue {
    margin: 30px 0 10px;
    font-size: 2.8rem;
  }
}

.about {
  background-color: #f5f5f5;
  color: #ffffff;
  text-align: center;
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 1.8rem;
  position: relative;
}
.about:before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  width: 100%;
  height: 110%;
  background: #222222;
  z-index: 0;
  transform: translate(-50%, -50%) skewY(-6deg);
  transform-origin: top right;
}
.about .container {
  max-width: 380px;
  position: relative;
  z-index: 1;
}
.about_player_img {
  width: 35%;
  max-width: 270px;
  mix-blend-mode: multiply;
  position: absolute;
}
.about_player_img:nth-of-type(1) {
  top: -70px;
  left: -24px;
}
.about_player_img:nth-of-type(2) {
  bottom: -100px;
  right: 0;
}
@media screen and (max-width: 839px) {
  .about {
    font-size: 1.6rem;
  }
  .about:before {
    top: 45%;
    height: 120%;
  }
  .about_player_img {
    width: 130px;
  }
  .about_player_img:nth-of-type(1) {
    top: -120px;
    left: -12px;
  }
  .about_player_img:nth-of-type(2) {
    bottom: -120px;
  }
}

.slider {
  overflow: visible;
}
.slider.slick-slider {
  position: inherit;
}
.slider .slick-track {
  margin: 100px 0 50px;
}
.slider li {
  margin: 0 10px;
  box-shadow: 20px 20px 20px rgba(3, 29, 101, 0.3019607843);
}
.slider li:nth-of-type(2n) {
  margin-top: 100px;
}
.slider li:nth-of-type(2n + 1) {
  margin-bottom: 100px;
}
@media screen and (max-width: 839px) {
  .slider .slick-track {
    margin: 150px 0 50px;
  }
  .slider li:nth-of-type(2n) {
    margin-top: 60px;
  }
  .slider li:nth-of-type(2n + 1) {
    margin-bottom: 60px;
  }
}

.news {
  background-color: #f5f5f5;
}
.news .container {
  max-width: 400px;
}
.news_item a {
  display: block;
  pointer-events: none;
}
.news_item dl {
  align-items: center;
}
.news_date {
  width: 25%;
  color: #767676;
  font-family: "Anton", sans-serif;
  font-weight: 400;
}
.news_title {
  width: 75%;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: right;
}
@media screen and (max-width: 839px) {
  .news dl {
    align-items: flex-start;
  }
  .news_title {
    font-size: 1.6rem;
    text-align: left;
  }
}

.guest {
  background-color: #000000;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
}
.guest .container {
  max-width: 600px;
}
.guest dt {
  margin-bottom: 20px;
  text-align: center;
  font-family: "Shippori Antique B1", sans-serif;
  position: relative;
}
.guest dt:after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #ffffff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.guest dd {
  text-align: center;
}
.guest dd:not(:last-child) {
  margin-bottom: 80px;
}
.guest_info {
  margin-bottom: 20px;
}
.guest_info_image {
  flex-direction: row;
}
.guest_info_name {
  padding: 20px 10px;
  background-color: #ffffff;
  color: #222222;
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 2.4rem;
  line-height: 1.5;
}
.guest_info_name span {
  display: inline-block;
  font-size: 3.2rem;
}
.guest_info_name span:nth-of-type(2) {
  margin-left: 20px;
}
@media screen and (max-width: 1060px) {
  .guest_info_name {
    font-size: 2rem;
  }
  .guest_info_name span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 839px) {
  .guest {
    font-size: 1.8rem;
  }
  .guest dt {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .guest dt:after {
    width: 60px;
  }
  .guest dd:not(:last-child) {
    margin-bottom: 40px;
  }
  .guest_info_name {
    padding: 15px;
    font-size: 1.8rem;
  }
  .guest_info_name span {
    font-size: 2.4rem;
  }
}

.founding {
  background-color: #f5f5f5;
}

.program {
  text-align: center;
}
.program .container {
  max-width: 600px;
}
.program dt {
  margin-bottom: 15px;
  color: #767676;
  font-family: "Shippori Antique B1", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.program dd {
  border-bottom: 2px dotted #767676;
  padding-bottom: 25px;
  margin-bottom: 25px;
  font-size: 1.8rem;
  font-weight: 500;
}
.program ul {
  justify-content: center;
  gap: 0 30px;
}
.program img {
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 839px) {
  .program dt {
    margin-bottom: 7px;
    font-size: 2rem;
  }
  .program dd {
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
  .program img {
    width: 100px;
  }
}

.player {
  background-color: #f5f5f5;
  max-height: 100vh;
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #53A75E;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #95846D;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  background-color: #F5F5F5;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #CCC;
  padding: 3px 10px;
  width: 100%;
  background-color: #F5F5F5;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 839px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 839px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #F5F5F5;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #F5F5F5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #F5F5F5;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.privacy p {
  margin-bottom: 50px;
}
.privacy dt {
  border-left: 3px solid #53A75E;
  padding: 10px 15px;
  margin-bottom: 20px;
  background-color: #DDF9E1;
}
.privacy dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.privacy ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 839px) {
  .privacy p {
    margin-bottom: 30px;
  }
  .privacy dt {
    margin-bottom: 10px;
  }
  .privacy dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 30px;
}
.sitemap ul {
  width: 48%;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #0071BC;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #0071BC;
}
.sitemap a:hover i {
  right: 40px;
}
.sitemap .sub_menu {
  width: 85%;
  border-bottom: none;
  margin: 0 0 0 auto;
}
.sitemap .sub_menu a i {
  position: inherit;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #37C2D2;
}
.sitemap .sub_menu .sub_menu a i {
  color: #86ebf6;
}
@media screen and (max-width: 839px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
  .sitemap .sub_menu {
    width: 90%;
  }
}

.rule dl {
  width: 800px;
  margin: 0 auto;
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
}
.rule dt {
  width: 30%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule dd {
  width: 70%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 10px;
}
.rule .caution {
  color: #ff0000;
}
.rule .cancel_price {
  margin-top: 10px;
}
.rule .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 890px) {
  .rule dl {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .rule dt {
    width: 100%;
    border-bottom: none;
    padding: 10px 5px 5px;
  }
  .rule dd {
    width: 100%;
    padding: 0px 5px 10px;
  }
}

.term p {
  margin-bottom: 50px;
}
.term dl + p {
  margin-bottom: 0;
  text-align: right;
}
.term dt {
  display: inline-block;
  border-bottom: 2px solid #53A75E;
  padding-bottom: 5px;
  margin-bottom: 20px;
  font-size: 1.8rem;
}
.term dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.term ol {
  list-style-type: decimal;
  list-style-position: inside;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.term ol ol {
  padding-left: 20px;
  margin-top: 10px;
  row-gap: 0;
}
.term .cancel_price {
  margin-top: 20px;
}
.term .cancel_price span {
  text-decoration: underline;
}
@media screen and (max-width: 839px) {
  .term p {
    margin-bottom: 30px;
  }
  .term dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
  .term dd {
    padding-left: 10px;
    margin-bottom: 25px;
  }
}

.err_page h2 {
  margin-bottom: 50px;
  font-size: 6rem;
  line-height: 1.5;
}
.err_page h2 span {
  display: inline-block;
  padding-left: 20px;
  font-size: 3rem;
}
.err_page h2 p {
  font-size: 2rem;
}
.err_page .btn {
  margin-top: 30px;
}
@media screen and (max-width: 839px) {
  .err_page h2 {
    margin-bottom: 20px;
    font-size: 4.5rem;
    line-height: 1.5;
  }
  .err_page h2 span {
    display: block;
    padding-left: 0;
    font-size: 2rem;
  }
  .err_page h2 p {
    font-size: 1.6rem;
  }
  .err_page .btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 839px) {
  .err_page.notFound h2 span {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.5rem;
  }
}
.thanks {
  background-color: #53A75E;
}
.thanks .head_text {
  margin-bottom: 50px;
  font-size: 2.8rem;
}
@media screen and (max-width: 839px) {
  .thanks .head_text {
    margin-bottom: 40px;
    font-size: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */