@charset "utf-8";
html, body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

img {
  width: 100%;
}

a {
  color: var(--text-base-color  );
  text-decoration-line: none;
}

section.section {
  margin: 0 auto;
  padding: 100px 0;
  width: 90%;
  max-width: 1920px;
}

section.section-m {
  margin: 0 auto;
  padding: 80px 0;
  width: 75%;
  max-width: 1920px;
}

@media screen and (max-width:590px){
  section.section {
    padding: 80px 0;
    width: 95%;
  }
  section.section-m {
    padding: 60px 0;
    width: 92%;
  }
}

p, h3, h4, ol {
  line-height: 2;
  letter-spacing: .1rem;
}

p, ol {
  font-size: .9rem;
}

ol{
  counter-reset: item;
  list-style-type: decimal;
  padding-left: 30px;
}

/** loading **/
#opening {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999
}

.opening-title {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100% - 50px);
    margin: 0 auto;
}

.opening-item.logo-mark {
    width: 50px;
    padding-top: calc(355 / 340 * 50px);
    background: url(../img/loading_mark.png) no-repeat;
    background-size: contain;
}

.opening-item.logo-main {
    width: 0;
    padding-top: calc(182 / 826 * 280px);
    background: url(../img/loading.png) no-repeat;
    background-size: contain;
    position: relative;
    flex-shrink: 0
}

.opening-item.logo-main::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0
}

.opening-item.logo-main img {
    position: absolute;
    top: 0;
    left: 0
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.opening-item.logo-main {
    transition: width .85s
}

.opening-item.logo-mark {
  animation: fadeIn 2.5s ease both;
}

.opening-item.logo-main.on {
  width: 220px;
}

.opening-item.logo-main::after {
    transition: transform .85s cubic-bezier(.65,0,.35,1) .75s;
}

.opening-item.logo-main.on::after {
    transform: translate(100%)
}

/** kv-area **/
#slide_kv {
    width: 100%;
    height: 100vh;
}

#slide_kv p {
  position: absolute;
  top: 30%;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-left: 8vw;
}

@media screen and (max-width:768px){
  #slide_kv p {
    top: 20%;
  }
}

#kv-area {
  position:relative;
  overflow:hidden;
  margin:0 auto;
}

#kv-area::before,
#kv-area::after {
    position:absolute;
    content:"";
    background-color:var(--main-color);
    animation:wave linear 22s infinite;
    z-index: 997;
  }

#kv-area::before {
    left:0;
    width:150vw;
    height:150vw;
    bottom:10%;
    border-radius:50% 50% / 50% 70%;
    opacity:0.2;
  }

#kv-area::after {
    left:-30%;
    width:50vw;
    height:50vw;
    top:-70%;
    border-radius:30% 70% / 30% 50%;
    opacity:0.1;
  }

@keyframes wave {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

/* g-navi */
header {
  position: fixed;
  width: 100%;
  z-index: 998;
  color: #fff;
}

header #header_logo {
  width: 200px;
  padding: 20px 0;
}

nav{
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  justify-items: start;
  align-items: center;
  width: 100%;
  padding: 0 5vw;
  color:#fff;
  line-height: 2rem;
}

nav::after {
  content: "";
  width: 90%;
  height: 2px;
  background: rgba(0, 128, 217, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

nav ul{
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: .8rem;
}

nav ul li a{
  position: relative;
  display: block;
  padding:32px 30px;
  transition:all .3s;
}

nav ul li li a{
  padding:20px;
}

nav ul li a:hover{
  color:var(--gray-color);
  cursor: pointer;
}

nav li.has-child ul{
  z-index: 4;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto;
  transition: all .3s;
  width: 90%;
  left:0;
}

.nav-child-items {
  position: absolute;
  z-index: 4;
  background:rgba(255, 255, 255, 0.9);
  display: none;
  width: 100vw;
  left:0;
}

nav li.has-child:hover > .nav-child-items{
  animation: navShow .5s linear 0s;
  display:block;
}

@keyframes navShow {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

nav{
  transition: .5s;
}

nav:hover {
  background : rgba(255, 255, 255, 0.9);
}

nav.white-header {
  background : #fff;
}

nav.white-header .nav-child-items {
  background : #fff;
}

nav.white-header ul li a{
  padding:15px 30px;
}

nav.white-header #header_logo {
  padding: 5px 0;
}

nav li.has-child {
  pointer-events : auto;
}

nav .nav-right li {
  pointer-events : auto;
}

nav li.has-child ul li{
  width:21%;
  border-bottom: 2px solid rgba(0, 128, 217, 0.1);
}

.nav-flexbox:after {
  content: "";
  display: block;
  width: 21%;
  height: 0;
}

.g-nav-openbtn {
  display: none;
}

@media screen and (max-width:1200px){
  nav{
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 1vw;
  }

  nav::after {
    width: 100%;
  }
}

@media screen and (max-width:768px){
  nav .nav-left {
    display: none;
  }
  nav .nav-right {
    display: none;
  }
  .g-nav-openbtn{
    pointer-events : auto;
    display: block;
    position:fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height:50px;
  }
  .white-header .g-nav-openbtn {
    top: 0;
  }
  #g-nav.panelactive .child-link {
    pointer-events : none;
  }
  .g-nav-openbtn span {
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 14px;
      height: 3px;
      border-radius: 2px;
      background: var(--text-base-color);
      width: 45%;
  }
  .white-header .g-nav-openbtn span {
      background: var(--text-base-color);
  }
  .g-nav-openbtn span:nth-of-type(1) {
      top:15px;
  }
  .g-nav-openbtn span:nth-of-type(2) {
      top:23px;
  }
  .g-nav-openbtn span:nth-of-type(3) {
      top:31px;
  }
  .g-nav-openbtn.active span:nth-of-type(1) ,
  .g-nav-openbtn.active span:nth-of-type(3){
      top: 23px;
  }
  #g-nav.panelactive {
    grid-template-columns: 1fr;
    background: #fff;
  }
  #g-nav.panelactive .nav-left,
  #g-nav.panelactive .nav-right {
    display: block;
  }
  #g-nav.panelactive {
    position: fixed;
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive .nav-child-items{
    animation: navShow .5s linear 0s;
    display:block;
  }
  #g-nav.panelactive .nav-child-items {
    position: relative;
  }
  #g-nav.panelactive li.has-child ul {
    flex-wrap: wrap;
  }
  #g-nav.panelactive .nav-btn {
    padding: 5px;
  }
  #g-nav.panelactive .btn-arrow::before,
  #g-nav.panelactive .btn-arrow::after {
    display: none;
  }
  #g-nav.panelactive li.has-child ul li {
    width: 45%;
  }
}

/* about */
#about .about-title {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  margin: -75vh 0 40px;
  position: relative;
  z-index: 2;
  mix-blend-mode: overlay;
  color: #1E1E1E;
}

#about #kv_title {
  position: -webkit-sticky;
  position: sticky;
  bottom: 7%;
  left: 8%;
  z-index: 997;
  font-weight: 600;
  line-height: 5rem;
}

#about #kv_title.active{
    animation: fadeIn 4s ease both .8s;
}

#about .kv_title_top {
  font-size: 3.8rem;
}

#about .kv_title_bottom {
  font-size: 6rem;
}

#about .kv_title_bottom span {
  background: linear-gradient(0deg, var(--main-color) 0%, var(--sub-color) 40%, var(--accents-color) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#about .about-message {
  width: 60%;
  margin: 0 0 0 auto;
}

@media screen and (max-width:590px) {
  #about .kv_title_top {
    font-size: 7vw;
  }
  #about .kv_title_bottom {
    font-size: 15vw;
  }
  #about .about-message {
    width: 100%;
    text-align: center;
  }
  #about .about-more-btn {
    margin: 50px auto 0 auto;
  }
  #about #kv_title {
    bottom: 30%;
    line-height: 4rem;
  }
}

/* service */
#service section {
  display: flex;
}

#service section > div{
  width: 50%;
}

#service img {
  border-radius: 10px;
  width: 60%;
  margin: 0 auto;
}

#service .service-content {
  margin: 0 50px;
}

@media screen and (max-width:768px){
  #service section > div{
    width: 100%;
  }
  #service img {
    width: 90%;
  }
}

@media screen and (max-width:590px){
  #service section {
    display: block;
  }
  #service .service-content {
    margin: 0;
  }
  #service .service-title {
    margin-top: 50px;
  }
}

/* development */
#development {
  background: var(--main-backgroud-color);
  border-radius: 100px 100px 0 0;
}

#development .development-item {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 0;
}

#development .development-item .development-num {
  width: 5%;
}

#development .development-item .development-num span {
  border: 1px solid var(--gray-color);
  border-radius: 10px;
  padding: 0 5px;
}

#development .development-item figure {
  width: 35%;
}

#development .development-item figure video,
#development .development-item figure img {
  border-radius: 10px;
}

#development .development-message {
  padding-right: 50px;
  width: 60%;
}

@media screen and (max-width:590px){
  #development .development-item .development-num {
    width: 12%;
  }
  #development .development-message {
    padding-right: 0;
    width: 88%;
  }
  #development .development-item figure {
    width: 90%;
    margin: 30px auto 0 auto;
  }
}

/* movie */
#movie .movie-icon {
  width: 40px;
}

#movie .slider li{
  padding: 0 10px;
}

/* news */
#news .news-items {
  display: flex;
  align-items: center;
  width: 100%;
}

#news .news-btn {
  display: block;
  background: var(--main-backgroud-color);
  margin: 10px 0;
  border-radius: 20px;
  transition: 0.5s;
}

#news .news-btn:hover {
  background: var(--main-color);
  color: #fff;
}

#news .news-btn:hover .news-arrow-back{
  background: var(--accents-color);
}

#news .news-btn:hover .news-arrow{
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

#news .news-tag {
  width: 21%;
  padding: 28px;
  border-right: 2px solid #fff;
}

#news .news-tag time {
  font-weight: bold;
}

#news .news-contents {
  width: 69%;
  padding: 28px;
}

#news .news-arrow-box {
  width: 10%;
  text-align: center;
  position: relative;
}

#news .news-tag-area span,
#news-content .news-tag-area span {
  border: 1px solid var(--gray-color);
  padding: 2px 10px;
  border-radius: 5px;
  font-size: .8rem;
  display: inline;
}

@media screen and (max-width:768px){
  #news .news-tag {
    width: 40%;
    padding: 30px 10px;
  }
  #news .news-contents {
    width: 50%;
    padding: 30px 10px;
  }
  #news .news-tag-area span {
    font-size: .6rem;
  }
}

.img-middle {
  max-width: 400px;
}

/* recruiting */
#recruiting section {
  display: flex;
  flex-wrap: wrap;
}

#recruiting section .recruiting-content{
  width: 55%;
}

#recruiting .recruiting-img {
  background: url(../img/recruiting.jpg) no-repeat center;
  background-size: cover;
  border-radius: 10px;
  min-height: 570px;
  margin: 0 auto;
  width: 35%;
}

@media screen and (max-width:768px){
  #recruiting section .recruiting-content {
    margin-top: 50px;
    width: 100%;
  }
  #recruiting .recruiting-img {
    width: 100%;
    background-position: 0 15%;
    min-height: 400px;
  }
}

/* training */
#training {
  background: var(--main-backgroud-color);
  border-radius: 100px 100px 0 0;
}

#training a {
  position: relative;
}

#training .training-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 92%;
  margin: 20px auto;
}

#training .img-zoom {
  border-radius: 10px;
}

#training .training-item {
  width: 30%;
  margin-bottom: 50px;
}

#training .training-title {
  font-size: 1.2rem;
  font-weight: bold;
}

#training .training-content {
  margin-top: 30px;
}

@media screen and (max-width:768px){
  #training .training-item {
    width: 70%;
    margin: 0 auto;
  }
  #training .training-box {
    width: 100%;
  }
  #training .training-content {
    background: #fff;
    margin: 0 0 20px 0;
    padding: 20px;
  }
  .arrow-circle {
    margin: 20px;
  }
  #training .img-zoom {
    border-radius: 0;
  }
}

@media screen and (max-width:590px){
  #training .training-item {
    width: 100%;
  }
}

/* footer */
footer {
  background:var(--main-backgroud-color);
  font-size: .8rem;
  font-weight: bold;
  padding-top: 50px;
}

footer .footer-sitemap {
  max-width: 1920px;
  margin: 0 auto;
}

footer .site-map-child a {
  color: var(--gray-color);
}

footer a:hover {
  color: var(--gray-light-color);
}

footer .footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-areas: "logo map";
  padding: 100px 80px 50px 80px;
  border-radius: 100px 50px 0 0;
  background: #fff;
  margin-left: 20px;
}

footer .footer-logo {
  grid-area: logo;
  margin-right: 20px;
}

footer .footer-logo img {
  width: 180px;
}

footer .footer-sns-list {
  padding-top: 50px;
}

footer .footer-sns-list li {
  width: 30px;
  padding: 10px 0;
}

footer .footer-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

footer .footer-map ul li {
  padding-bottom: 10px;
}

footer .footer-bottom {
  background: #fff;
  margin-left: 20px;
  padding: 40px 0 50px 0;
  border-top: 1px solid var(--gray-color);
  display: flex;
  justify-content: space-around;
  font-size: .7rem;
}

footer .footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
}

footer .footer-bottom ul li {
  padding-right: 30px;
}

@media screen and (max-width:768px){
  footer .footer-top {
    padding: 100px 20px 50px 20px;
    margin-left: 0;
  }
  footer .footer-logo,
  footer .footer-map {
    grid-column-start: 1;
    grid-column-end: 4;
  }
  footer .footer-sns-list {
    display: flex;
    padding: 20px 0;
  }
  footer .footer-sns-list li {
    margin-right: 50px;
  }
  footer .footer-bottom {
    flex-direction: column;
    padding: 10px 0 5px 0;
    margin-left: 0;
  }
  footer .footer-bottom ul li {
    padding-right: 25px;
  }
  footer .footer-bottom small {
    display: block;
    margin: 20px auto 0 auto;
  }
}

/* ぺージタイトル */
#page-title-area {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
#page-title-area:before {
    left: 20%;
    width: 150vw;
    height: 150vw;
    bottom: 30%;
    border-radius: 50% 50% / 50% 70%;
    opacity: 0.1;
}
#page-title-area::after {
    left: -20%;
    width: 40vw;
    height: 40vw;
    top: 50%;
    border-radius: 30% 70% / 30% 50%;
    opacity: 0.1;
}
#page-title-area::before, #page-title-area::after {
    position: absolute;
    content: "";
    background-color: #fff;
    animation: wave linear 22s infinite;
    z-index: 997;
}
#page-title {
  width: 100%;
  height: 65vh;
  background: linear-gradient(90deg, rgb(22, 135, 237), rgb(20, 55, 90));
  z-index: -999;
  position: relative;
  margin: 90px 0 0 90px;
}

#page-title div {
  position: absolute;
  width: 100%;
  top: 25vh;
  left: 5vw;
  color: #fff;
  font-weight: 600;
}

#page-title .en-title {
  font-size: 5vw;
  line-height: 1.3;
  width: 100%;
  border-bottom: 1px solid #fff;
}

#page-title .ja-title {
  font-size: .9rem;
  padding-top: 20px;
}

@media only screen and (max-width:768px) {
  #page-title {
    height: 35vh;
    margin: 90px 0 0 30px;
  }
  #page-title div {
    top: 10vh;
  }
  #page-title .en-title {
    font-size: 2.3rem;
    line-height: 1.5;
  }
}

/* concept-content */
#concept-content {
  background: var(--main-backgroud-color);
  border-radius: 100px 0 0 0;
}

#concept-content section {
  padding: 50px 10vw;
}

@media only screen and (max-width:768px) {
  #concept-content section {
    padding: 50px 2vw;
  }
}

#cred .cred-items {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  flex-wrap: wrap;
}

#cred .cred-items img {
  width: 30%;
  margin:0 25px;
}

#cred .cred-message {
  margin:0 25px;
  width: 40%;
}

#cred .cred-number {
  font-size: 5rem;
  line-height: 1;
  font-weight: bold;
  color: var(--main-color);
  font-family: 'Century Gothic';
}

#cred .cred-title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  color: var(--main-color);
}

@media only screen and (max-width:768px) {
  #cred .cred-items img {
    width: 90%;
    order: 1;
  }

  #cred .cred-message {
    margin:0;
    width:90%;
    order: 2;
  }
  #cred .cred-title {
    font-size: 1.5rem;
  }
}

/* ci */
#ci .section-m {
  background-image:url('../img/ci.png');
  background-color:rgba(255,255,255,0.8);
  background-size: 40%;
  background-repeat: no-repeat;
  background-blend-mode:lighten;
  background-position: 100% 30%;
}

@media only screen and (max-width:590px) {
  #ci .section-m {
    background-size: 70%;
    background-position: 100% 10%;
  }
}

/* privacy */
#privacy .p-mark-img {
  display: flex;
}

.mail-img {
  width: 180px;
  display: inline-block;
  line-height: 1;
}

/* brochure */
#brochure .brochure-contents img {
  width: auto;
  box-shadow: 0 14px 25px rgba(0,0,0,.16);
  margin: 0 auto;
}

/* concept */
#concept .concept-img {
  width: 60%;
  margin: 30px auto;
}

#concept h2 {
  margin: 50px 0;
}

@media only screen and (max-width:590px) {
  #concept .concept-img {
    width: 95%;
  }
}

/* movie */
iframe#player {
  width: 560px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
    iframe#player {
        max-width: 100%;
        height: 260px;
    }
}

/* architect */
#architect .architect-case {
  display: flex;
  align-items: center;
  position: relative;
  padding: 30px 20px;
  color: var(--text-base-color);
  font-size: 16px;
  background: var(--main-backgroud-color);
  border-radius: 50px;
  margin-top: 30px;
}

#architect .architect-case:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -40px;
  border: 40px solid transparent;
  border-top: 40px solid var(--main-backgroud-color);
}

#architect .archetect-point li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

#architect .archetect-point li img {
  width: 26px;
  margin-right: 10px;
}

/* activity plan */
#activity-plan .activity-plan-check {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}

/* recruiting content */
#recruiting-content section {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

#recruiting-content article {
  width: 50%;
}


#recruiting-content section img {
  width: 90%;
  margin: 0 auto;
  border-radius: 30px;
}

@media only screen and (max-width:590px) {
  #recruiting-content article {
    width: 90%;
  }
}

/* contact */
.form-body {
  background-color: var(--main-backgroud-color);
}

.form-section {
  width: 60%;
  margin: 0 auto;
}

.form-body hgroup {
  padding: 50px 0;
}

.form-body hgroup .en-title {
  font-size: 8rem;
  font-weight: 800;
}

.form-list input[type='text'] , input[type='email'] , input[type='tel'] {
    height:50px;
    font-weight: normal;
}

.form-list label {
  line-height: 2.2;
}

.form-list li {
    margin: 20px 0;
}

.form-list dl{
    padding:0 0 40px 0;
}

.form-list textarea {
    height:200px;
    resize: none;
}

.form-list input , button , textarea , select {
    margin:0;
    padding:0;
    border:none;
    outline:none;
    background:none;
    font-size: 16px;
}

.form-list input[type='text'] , 
.form-list input[type='email'] , 
.form-list input[type='tel'] , 
.form-list textarea{
    width:100%;
    background:#fff;
    padding: 10px;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}

.form-list input[type='text'] , input[type='email'] {
    height:50px;
}

.form-list .require {
    margin-left: 10px;
    padding: 3px;
    color: #fff;
    font-size: .8rem;
    background-color: #cf2e2e;
}

.form-list .optional {
    margin-left: 10px;
    padding: 3px;
    color: #fff;
    font-size: .8rem;
    background-color: var(--main-color)
}

.form-list .scroll_box {
    font-size: 14px;
    padding: 20px 100px;
    height: 180px;
    overflow: scroll;
    border: #000 2px solid;
    -ms-overflow-style: none;
    scrollbar-width: none; 
}

@media screen and (max-width:570px) {
    .form-list .scroll_box {
        padding: 20px;
    }
}

.form-list .scroll_box::-webkit-scrollbar {
  display:none;
}

.form-list .entry-form-btn {
    text-align: center;
    margin: 60px 0;
}

.form-list .checkbox {
    padding: 30px 0 0 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.form-list .checkboxInput {
  margin: 0;
  width: 0;
  opacity: 0;
}

.form-list .checkbox:hover > .cbxInputBefore{
  transform: scale(1.1);
}

.form-list .checkboxInput:focus + .cbxInputBefore{
  transform: scale(1.1);
}

.form-list .checkboxInput:checked + .cbxInputBefore {
  background: #515151;
}

.form-list .checkboxInput:checked + .cbxInputBefore::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35%;
    height: 4px;
    border-radius: 2px;
    transform: translate(-4px, 1px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}

.form-list .checkboxInput:checked + .cbxInputBefore::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 4px;
    border-radius: 2px;
    transform: translate(-4px, 1px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: #FFFFFF;
}
.form-list .cbxInputBefore {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 24px;
    height: 24px;
    border: solid 2px transparent;
    background: rgba(0, 0, 0, .15);
    transition: all .15s linear;
}
.form-list .checkboxLabel {
    margin-left: 12px;
    display: block;
    max-width: 88%;
}

#hidden_iframe {
    display: none;
}

.is-error {
    color: #cf2e2e;
    font-size: .9rem;
}

p:has(.is-error){
    margin: 2px 0 0 0;
}

@media only screen and (max-width:768px) {
  .form-section {
    width: 90%;
  }
  .form-body hgroup .en-title {
    font-size: 3.5rem;
  }
}