@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #161c60;
  background: #161c60;
  /*読み込み時ふわっと表示させる*/
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

a:link, a:visited, a:active {
  color: #fff;
}

.pc {
  display: inherit;
}

.sp {
  display: none;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.center {
  text-align: center;
}

.inner {
  max-width: 1040px;
  margin: auto;
  padding: 0 20px;
}

h2 {
  font-family: "Bangers", sans-serif;
  font-size: 120px;
  font-size: 7.5rem;
  text-align: center;
}

h2 span {
  display: block;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  margin-top: -1rem;
}

.scrollin {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
  transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
}

.scrollin_02 {
  opacity: 0;
  -webkit-transform: translateY(90px);
          transform: translateY(90px);
  -webkit-transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
  transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
}

.scrollin_03 {
  opacity: 0;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  -webkit-transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
  transition: 0.6s cubic-bezier(0, 0.29, 0.79, 0.99) all;
}

.fadein {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 750px) {
  h2 {
    font-family: "Bangers", sans-serif;
    font-size: 60px;
    font-size: 3.75rem;
    text-align: center;
  }
  h2 span {
    display: block;
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: 900;
    margin-top: -0.5rem;
  }
  .inner {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}

/*============================================================
header
==============================================================*/
header {
  max-width: 1440px;
  margin: 0 auto;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 10px 0;
}

header li {
  margin: 0 5px;
}

/*============================================================
btn
==============================================================*/
.btn {
  display: block;
  font-weight: 900;
  color: #fff;
  text-align: center;
  border: solid 4px #fff;
  border-radius: 100vh;
  -webkit-box-shadow: 0px 0px 15px -5px #555;
          box-shadow: 0px 0px 15px -5px #555;
}

.header_btn {
  font-size: 14px;
  font-size: 0.875rem;
  width: 240px;
  padding: 10px;
}

.cta_btn {
  font-size: 24px;
  font-size: 1.5rem;
  width: 360px;
  padding: 14px;
}

.send_btn {
  font-size: 24px;
  font-size: 1.5rem;
  width: 360px;
  padding: 14px;
  background: #ff6b3c;
  margin: 0 auto;
}

.contact_btn {
  background: #ff6b3c;
}

.line_btn {
  background: #06c755;
}

@media (max-width: 750px) {
  .cta_btn, .send_btn {
    font-size: 16px;
    font-size: 1rem;
    width: 260px;
  }
}

@media (max-width: 520px) {
  .cta_btn, .send_btn {
    font-size: 14px;
    font-size: 0.875rem;
    width: 100%;
  }
  .header_btn {
    font-size: 10px;
    font-size: 0.625rem;
    width: 100%;
  }
}

/*============================================================
mv
==============================================================*/
/*#mv {
	color: $color_white;
	background: url(../img/mv_bg.jpg) no-repeat top / contain;
	height: 562px;
	text-align: center;
}

@include w750 {
	#mv {
		height: 100%;
	}	
}*/
/*============================================================
cta
==============================================================*/
#cta {
  text-align: center;
  /*background: url(../img/cta_bg.jpg) no-repeat top center;*/
  background: url(../img/cta_bg.png) no-repeat top center;
  height: 319px;
  margin-top: 30px;
}

#cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 145px;
}

#cta li {
  margin: 0 10px;
}

@media (max-width: 750px) {
  #cta {
    /*background: url(../img/cta_bg_sp.jpg) no-repeat top center / 140%;*/
    background: url(../img/cta_bg_sp.png) no-repeat top center/140%;
    height: auto;
    padding: 20% 0 24.7%;
  }
  #cta .inner {
    position: relative;
  }
  #cta ul {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
  }
  #cta li {
    margin: 0 5px;
  }
}

/*============================================================
intro
==============================================================*/
#intro {
  text-align: center;
  /*background: url(../img/intro_bg.jpg) no-repeat top center;*/
  background: url(../img/intro_bg.png) no-repeat top center;
  height: 713px;
  margin-top: -55px;
}

#intro p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 900;
  padding-top: 500px;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

@media (max-width: 750px) {
  #intro p {
    line-height: 1.5rem;
  }
}

@media (max-width: 520px) {
  #intro {
    /*background: url(../img/intro_bg_sp.jpg) no-repeat top center / 140%;*/
    background: url(../img/intro_bg_sp.png) no-repeat top center/140%;
    height: auto;
    padding: 62% 0 20px;
    margin-top: -16px;
  }
  #intro p {
    font-size: 14px;
    font-size: 0.875rem;
    padding-top: 0;
  }
}

/*============================================================
what
==============================================================*/
#what {
  margin-top: 30px;
}

#what h2 {
  color: #fff;
  margin-bottom: 20px;
}

#what h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

#what .what_box {
  position: relative;
  background: url(../img/what_bg.jpg);
  max-width: 1380px;
  margin: 0 auto;
  padding-bottom: 40px;
}

#what .what_inner {
  max-width: 1000px;
  padding-top: 60px;
  margin: 0 auto;
}

#what .what_balloon {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

#what .what_txt {
  background: url(../img/what_whitesquare.png) no-repeat top center;
}

#what .what_txt p {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  max-width: 900px;
  padding: 20px;
  margin: 0 auto;
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

#what .what_list {
  margin-top: 30px;
}

#what .what_list li {
  line-height: 2rem;
  letter-spacing: 0.1rem;
  margin-bottom: 10px;
}

#what .what_list li .what_square_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  background: url(../img/what_square01.png) no-repeat top center;
  padding: 100px 48px 90px;
}

#what .what_list li .what_square_01::after {
  content: '';
  background: url(../img/what_arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 45%;
  bottom: 0;
  margin-top: -18px;
  height: 36px;
  width: 82px;
}

#what .what_list li .what_square_01 figure {
  margin-top: 10px;
}

#what .what_list li .what_square_01 .img_box {
  width: 100%;
  margin-top: -50px;
}

#what .what_list li .what_square_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: relative;
  background: url(../img/what_square02.png) no-repeat top center;
  padding: 100px 48px 90px;
}

#what .what_list li .what_square_02::after {
  content: '';
  background: url(../img/what_arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 45%;
  bottom: 0;
  margin-top: -18px;
  height: 36px;
  width: 82px;
}

#what .what_list li .what_square_02 figure {
  margin-top: 10px;
}

#what .what_list li .what_square_02 .img_box {
  width: 100%;
  margin-top: -50px;
}

#what .what_list li .what_square_03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: url(../img/what_square03.png) no-repeat top center;
  padding: 100px 48px 90px;
}

#what .what_list li .what_square_03 figure {
  margin-top: 10px;
}

#what .what_list li .what_square_03 .img_box {
  width: 100%;
  margin-top: -50px;
}

#what .what_time {
  margin-top: 10px;
}

@media (max-width: 750px) {
  #what h3 {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 20px;
  }
  #what .what_txt {
    background: #fff;
  }
  #what .what_txt p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  #what .what_list li .what_square_01 {
    background: url(../img/what_square01_sp.png) no-repeat top center;
    display: block;
    padding: 70px 40px 90px;
  }
  #what .what_list li .what_square_01::after {
    right: 40%;
  }
  #what .what_list li .what_square_01 .img_box {
    margin-top: 0px;
  }
  #what .what_list li .what_square_02 {
    background: url(../img/what_square02_sp.png) no-repeat top center;
    display: block;
    padding: 70px 40px 110px;
  }
  #what .what_list li .what_square_02::after {
    right: 40%;
  }
  #what .what_list li .what_square_02 .img_box {
    margin-top: 0px;
  }
  #what .what_list li .what_square_03 {
    background: url(../img/what_square03_sp.png) no-repeat top center;
    display: block;
    padding: 70px 40px 90px;
  }
  #what .what_list li .what_square_03::after {
    right: 40%;
  }
  #what .what_list li .what_square_03 .img_box {
    margin-top: 0px;
  }
}

/*============================================================
merit
==============================================================*/
#merit {
  margin-top: 30px;
}

#merit h2 {
  color: #fff;
}

#merit h3 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 15px;
}

#merit .merit_bg {
  background: url(../img/merit_bg.jpg);
  max-width: 1380px;
  margin: 0 auto;
}

#merit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1160px;
  padding: 0 0 40px;
  margin: 0 auto;
}

#merit li {
  line-height: 2rem;
  letter-spacing: 0.1rem;
  width: 550px;
  padding: 100px 70px 290px;
  margin-top: 10px;
}

#merit li figure {
  margin-top: 10px;
}

#merit li:first-child {
  background: url(../img/merit_square01.png) no-repeat top center;
  height: 644px;
}

#merit li:nth-child(2) {
  background: url(../img/merit_square02.png) no-repeat top center;
  height: 626px;
}

#merit li:nth-child(3) {
  background: url(../img/merit_square03.png) no-repeat top center;
  height: 628px;
}

#merit li:nth-child(4) {
  background: url(../img/merit_square04.png) no-repeat top center;
  height: 644px;
}

#merit li:nth-child(5) {
  background: url(../img/merit_square05.png) no-repeat top center;
  height: 626px;
}

#merit li:nth-child(6) {
  background: url(../img/merit_square06.png) no-repeat top center;
  height: 628px;
}

@media (max-width: 750px) {
  #merit h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #merit li {
    padding: 100px 30px 80px;
  }
  #merit li:first-child {
    background: url(../img/merit_square01_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li:nth-child(2) {
    background: url(../img/merit_square02_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li:nth-child(3) {
    background: url(../img/merit_square03_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li:nth-child(4) {
    background: url(../img/merit_square04_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li:nth-child(5) {
    background: url(../img/merit_square05_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li:nth-child(6) {
    background: url(../img/merit_square06_sp.png) no-repeat top center;
    height: auto;
  }
  #merit li p {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*============================================================
about
==============================================================*/
#about {
  background: url(../img/about_bg.jpg);
  max-width: 1380px;
  padding: 40px 0;
  margin: 30px auto auto;
}

#about h2 {
  color: #06c755;
  margin-bottom: 30px;
}

#about h4 {
  color: #06c755;
}

#about p {
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

#about .track {
  position: absolute;
  top: -36px;
  left: 100px;
}

#about ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 30px;
}

#about li {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#about .about_box {
  position: relative;
  background: #fff;
  border: solid 20px #161c60;
  border-radius: 150px;
  padding: 50px;
}

#about .txt_box {
  width: 51%;
}

#about .txt_box p {
  margin-top: 10px;
}

@media (max-width: 520px) {
  #about .inner {
    padding: 0;
  }
  #about ul {
    display: block;
  }
  #about li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
  }
  #about .about_box {
    border-radius: 100px;
    padding: 40px 20px;
  }
  #about .txt_box {
    width: 100%;
  }
  #about .track {
    top: -58px;
    left: -5px;
    width: 45%;
  }
}

/*============================================================
orientation
==============================================================*/
#orientation {
  text-align: center;
  background: url(../img/orientation_bg.jpg) no-repeat center;
  padding: 40px 0;
  margin-top: 30px;
}

#orientation .inner {
  max-width: 630px;
}

#orientation h2 {
  color: #349ff7;
  margin-bottom: 30px;
}

#orientation ul {
  margin-top: 50px;
}

#orientation li {
  text-align: left;
  max-width: 630px;
  border-bottom: solid 1px #cdcdcd;
  padding: 15px 0;
  margin: 0 auto;
}

#orientation li span {
  font-weight: 900;
  margin-right: 30px;
}

#orientation li a {
  text-decoration: underline;
  color: #161c60;
}

#orientation p {
  margin-top: 20px;
}

@media (max-width: 520px) {
  #orientation li span {
    display: block;
    margin-right: 0;
  }
}

/*============================================================
contact
==============================================================*/
#contact {
  text-align: center;
  background: url(../img/contactus_bg.jpg) no-repeat top center;
  padding: 10px 0 20px;
  margin-top: 30px;
}

#contact h2 {
  color: #fff;
}

#contact p {
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: -1rem;
}

#contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 130px;
}

#contact li {
  margin: 0 10px;
}

@media (max-width: 520px) {
  #contact {
    background: url(../img/contactus_bg.jpg) no-repeat bottom center/cover;
  }
  #contact p {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 0;
  }
  #contact li {
    margin: 0 5px;
  }
}

/*============================================================
message
==============================================================*/
#message {
  text-align: center;
  background: url(../img/message_bg.jpg) no-repeat center;
  padding: 50px 0;
  margin-top: 30px;
}

#message h2 {
  color: #ffb800;
}

#message p {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 2rem;
  letter-spacing: 0.1rem;
  margin-top: 20px;
}

@media (max-width: 520px) {
  #message p {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*============================================================
infomation
==============================================================*/
#infomation {
  background: url(../img/infomation_bg.jpg) no-repeat center;
  padding: 30px 0;
  margin-top: 30px;
}

#infomation h2 {
  color: #e90041;
}

#infomation ul {
  margin-top: 20px;
}

#infomation li {
  text-align: left;
  max-width: 500px;
  border-bottom: solid 1px #cdcdcd;
  padding: 10px 30px;
  margin: 0 auto;
}

#infomation li span {
  display: inline-block;
  width: 120px;
  text-align: right;
  font-weight: 900;
  margin-right: 30px;
}

#infomation li:last-child {
  border-bottom: none;
}

#infomation a {
  color: #161c60;
}

@media (max-width: 520px) {
  #infomation li {
    text-align: center;
  }
  #infomation li span {
    text-align: center;
    display: block;
    width: auto;
    margin-right: 0;
  }
}

/*============================================================
faq
==============================================================*/
#faq {
  background: url(../img/qa_bg.jpg);
  max-width: 1380px;
  padding: 150px 0 80px;
  margin: 30px auto auto;
}

#faq h2 {
  position: absolute;
  left: 0;
  right: 0;
  top: -150px;
}

.faq_box {
  position: relative;
  max-width: 1000px;
  background: #fff;
  border: solid 20px #161c60;
  border-radius: 150px;
  padding: 200px 100px 150px;
  margin: 0 auto;
}

.accordion {
  margin-bottom: 30px;
}

.accordion_ttl {
  position: relative;
  text-align: left;
  color: #000;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4rem;
  padding: 0 40px 20px 15px;
  z-index: +1;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  border-bottom: solid 4px #161c60;
}

.accordion_ttl p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e90041;
  font-size: 22px;
  font-size: 1.375rem;
}

.accordion_ttl span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  text-align: center;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 4rem;
  font-family: "Bangers", sans-serif;
  margin-right: 20px;
}

.accordion_ttl::before {
  content: '';
  width: 25px;
  height: 4px;
  background: #161c60;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion_ttl::after {
  content: '';
  width: 25px;
  height: 4px;
  background: #161c60;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: .5s;
  transition: .5s;
}

.accordion_ttl.open::after {
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
}

.accordion_txt {
  position: relative;
  display: none;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4rem;
  padding: 15px 40px 15px 15px;
}

.accordion_txt span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #000;
  font-size: 42px;
  font-size: 2.625rem;
  font-family: "Bangers", sans-serif;
  margin-right: 20px;
}

.accordion_txt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.record {
  position: absolute;
  bottom: -73px;
  right: 26px;
}

@media (max-width: 520px) {
  #faq {
    padding: 100px 0 80px;
  }
  #faq .inner {
    padding: 0;
  }
  #faq h2 {
    top: -100px;
  }
  #faq .faq_box {
    border-radius: 100px;
    padding: 80px 20px 40px;
  }
  #faq .accordion_ttl {
    padding: 0 40px 20px 0;
  }
  #faq .accordion_ttl p {
    font-size: 16px;
    font-size: 1rem;
  }
  #faq .record {
    width: 50%;
    right: 0;
  }
}

/*============================================================
form
==============================================================*/
#form {
  background: url(../img/about_bg.jpg);
  max-width: 1380px;
  padding: 40px 0;
  margin: 30px auto auto;
}

#form h2 {
  color: #ff6b3c;
  margin-bottom: 30px;
}

#form .form_box {
  background: #fff;
  border: solid 20px #161c60;
  border-radius: 150px;
  padding: 30px;
}

#form .contact_list {
  max-width: 800px;
  margin: 0 auto;
}

#form .contact_item {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 20px;
}

#form .contact_item p {
  font-weight: bold;
  margin-bottom: 8px;
}

#form .contact_item p.contact_caution {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}

#form .contact_req {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background-color: #e90041;
  padding: 3px 12px 4px;
  margin-left: 10px;
}

#form .contact_note {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  margin-left: 10px;
}

#form .contact_input {
  width: 100%;
  height: 40px;
  background: #fff;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

#form .contact_box {
  height: 150px;
}

#form .radio_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#form .radio_area label {
  display: block;
  margin: 0 15px 8px 0;
}

#form .radio_area label input {
  margin-right: 5px;
}

#form .form_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#form .form_flex input {
  margin-right: 10px;
}

#form h6.error {
  color: red;
}

#form .form_box input[type='text'].error, #form .form_box input[type='email'].error, #form .form_box select.error {
  background: #FCE6E6;
  border-color: red;
}

@media (max-width: 520px) {
  #form .inner {
    padding: 0;
  }
  #form .form_box {
    border-radius: 100px;
  }
  #form .radio_area, #form .form_flex {
    display: block;
  }
  #form .contact_req {
    font-size: 10px;
    font-size: 0.625rem;
    padding: 3px 7px 4px;
  }
  #form .contact_note {
    margin-left: 0;
  }
  #form .form_flex {
    display: block;
  }
  #form .form_flex input {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

/*============================================================
footer
==============================================================*/
footer {
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}

.footer_inner {
  max-width: 960px;
  margin: auto;
  padding: 40px 20px;
}

.footer_copy {
  display: inline-block;
  font-family: "Bangers", sans-serif;
  margin: 20px auto;
}
/*# sourceMappingURL=style.css.map */