﻿@charset "utf-8";

/*********************************************************************
*  Common
*********************************************************************/
/***** Base *****/
.body {
  background-image: url("../img/common/body_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
#wrap {
  width: 100%;
  overflow: hidden;
}
#main-contents {
  width: 900px;
  max-width: 100%;
  margin: auto;
  background: #fff;
  overflow: auto;
}

@media screen and (max-width: 800px) {
  #main-contents {
    overflow: hidden;
  }
}

/***** Loader *****/
#loader-bg,
#ajax-loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,1);
  z-index: 999999;
}
#ajax-loader {
  background: rgba(255,255,255,0.8);
}
#loader-bg #loading,
#ajax-loader #ajax-loader-img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  max-width: 80vw;
}

/***** Section title *****/
.section-title {
  font-size: 1.8rem;
  padding: 35px 0;
  line-height: 36px;
}
@media screen and (max-width: 900px) {
  .section-title {
    font-size: 1.6rem;
  }
}


/***** Button contents *****/
/* Button area */
.submit-area {
  position: relative;
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-box-pack:justify;
  -moz-box-pack:justify;
  -webkit-flex-pack:justify;
  -moz-flex-pack:justify;
  -ms-flex-pack:justify;
  -webkit-justify-content:space-between;
  -moz-justify-content:space-between;
  justify-content:space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  max-width: 100%;
  padding: 50px 0;
}
.submit-area .section-submit-left,
.submit-area .section-submit-right,
.submit-area > form {
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  .submit-area .section-submit-right {
    margin-top: 20px;
  }
}
/* Main */
.button {
  width: 310px;
  max-width: 100%;
  height: 40px;
  margin: auto;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  cursor: pointer;
  box-sizing: border-box;
}
.button .btn-content {
  position: relative;
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-box-pack:center;
  -moz-box-pack:center;
  -webkit-flex-pack:center;
  -moz-flex-pack:center;
  -ms-flex-pack:center;
  -webkit-justify-content:center;
  -moz-justify-content:center;
  justify-content:center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 2.2rem;
  line-height: 1em;
  text-decoration: none;
}
.button .btn-content span {
  position: relative;
  padding-left: 20px;
  margin-left: 20px;
  font-size: 1.6rem;
}
.button .btn-content span::before {
  content: "|";
  position: absolute;
  left: 0;
}

/* Button Arrow */
.button .btn-content::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 100%;
  font-size: 2rem;
  font-weight: 700;
  line-height: 22px;
}
.button .btn-content.next::before {
  content: ">";
  right: 5%;
  text-indent: 2.5px;
}
.button .btn-content.prev::before {
  content: "<";
  left: 5%;
  text-indent: -2.5px;
}
.button .arrow01::before {
  background: #00447f;
  color: #fff;
}
.button .arrow02::before {
  background: #fff;
  color: #7ba6cb;
}
.button .arrow03::before {
  background: #fff;
  color: #00447f;
}

/* Login */
.button.login {
  margin-top: 50px;
  background-color: #fff;
}
.button.login .btn-content {
  color: #00447f;
}
.button.login .btn-content span {
  color: #9ebed9;
}
/* Sign up */
.button.signup {
  margin-top: 40px;
  background-color: #7ba6cb;
}
.button.signup .btn-content {
  color: #fff;
}
/* Move on */
.button.move-on {
  background: #00447f;
}
.button.move-on .btn-content {
  color: #fff;
}
/* Return */
.button.return {
  background: #fff;
  border: 1px solid #00447f;
}
.button.return .btn-content {
  color: #00447f;
}

/***** Error message *****/
.errmsg {
  padding: 10px;
  background-color: #fff;
  color: #ec3618;
  font-size: 1.4rem;
  text-align: left;
}

/***** Color adjustment *****/
.grayout {
  background-color: #9f9f9f !important;
}

/***** Icon *****/
.icon{
  cursor: pointer;
}


/*********************************************************************
*  header
*********************************************************************/
/***** header Top *****/
.header {
  position: relative;
}
.header .header-line {
  width: 100%;
  height: 80px;
  background-color: #292929;
  position: relative;
}
.header .header-line .logo-img {
  position: relative;
  width: 900px;
  max-width: 100%;
  height: 100%;
  margin: auto;
  text-align: left;
}
.header .header-line .logo-img a {
  display: inline-block;
  height: 100%;
  text-decoration: none;
}
.header .header-line .logo-img .logo {
  height: 80px;
  padding-left: 10px;
  text-align: left;
  fill: #fff;
}
.header .header-line .logo-img .text {
  position: relative;
  bottom: 10px;
  height: 50px;
  padding-left: 10px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .header .header-line {
    height: 50px;
  }
  .header .header-line .logo-img .logo {
    height: 50px;
  }
  .header .header-line .logo-img .text {
    height: 30px;
    padding-left: 5px;
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 480px) {
  .header .header-line {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .header .header-line .logo-img .logo {
    height: 40px;
    padding: 5px 0 5px 10px;
  }
  .header .header-line .logo-img .text {
    height: 28px;
    padding-left: 0;
    margin-bottom: -2px;
  }
}


/***** header Bottom *****/
.header .header-title-area {
  position: relative;
  width: 100%;
  height: 55px;
  padding: 20px 0;
  background-image: url("../img/common/header_title_bg.png");
  background-repeat: repeat-x;
  background-size: contain;
  text-align: center;
  z-index: 9999;
}
.header .header-title-area .header-title-text {
  font-size: 3rem;
}
.header .header-title-area .header-title-text-en {
  font-size: 1.4rem;
}
@media screen and (max-width: 480px) {
  .header .header-title-area {
    height: 50px;
    padding: 10px 0;
    margin-top: 50px;
    z-index: 99;
  }
  .header .header-title-area .header-title-text {
    font-size: 2.4rem;
    white-space: nowrap;
  }
  .header .header-title-area .header-title-text-en {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

/***** header Menu *****/
.header .header-menu-area {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  -webkit-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  -ms-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  text-align: left;
  z-index: 999;
}
.header .header-menu-area.fixed {
  position: fixed;
  top: 0;
}
.header .header-menu-area.closed {
  -webkit-filter: none;
  -ms-filter: none;
  filter: none;
}
.header .header-menu-area .header-menu-title {
  position: relative;
  padding: 0 20px 0 70px;
  background: #186f20;
  color: #fff;
  font-size: 24px;
  line-height: 60px;
}
.header .header-menu-area .header-menu-title.adminpage {
  background: #9d2a01;
}
.header .header-menu-area .header-menu-title .closed-menu {
  position: absolute;
  top: 0;
  right: 100%;
  width: 2.5rem;
  height: 100%;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  background-color: #186f20;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
}
.header .header-menu-area .header-menu-title .closed-menu::before {
  content: "≫";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header .header-menu-area.closed .header-menu-title .closed-menu::before {
  content: "≪";
}
.header .header-menu-area .header-menu-title.adminpage .closed-menu {
  background-color: #9d2a01;
}
.header .header-menu-area.closed .header-menu-title .closed-menu {
  -webkit-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  -ms-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
}
.header .header-menu-area .header-menu-list:not(:last-child) {
  border-bottom: 1px solid #186f20;
}
.header .header-menu-area .header-menu-list a {
  position: relative;
  display: block;
  padding: 0 30px 0 54px;
  color: #000;
  font-size: 1.8rem;
  line-height: 50px;
  text-decoration: none;
}
.header .header-menu-area .header-menu-close {
  position: relative;
  height: 20px;
  background: #292929;
  cursor: pointer;
}
.header .header-menu-area .header-menu-close .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 2px)) rotate(-45deg);
  width: 6px;
  height: 6px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.header .header-menu-area .header-menu-close.close .arrow {
  transform: translate(-50%, calc(-50% - 2px)) rotate(135deg);
}
.header .header-menu-area .header-menu-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
  .header .header-menu-area {
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area.closed {
    -webkit-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
    -ms-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
    filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  }
  .header .header-menu-area .header-menu-title .closed-menu {
    -webkit-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
    -ms-filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
    filter: drop-shadow(-1px 3px 2px rgba(0, 0, 0, 0.45));
  }
  .header .header-menu-area.closed .header-menu-title.adminpage .closed-menu {
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area .header-menu-title .closed-menu::before {
    content: "≪";
  }
  .header .header-menu-area.closed .header-menu-title .closed-menu::before {
    content: "≫";
  }
}
@media screen and (max-width: 480px) {
  .header.fixed-top {
    margin-top: 50px;
  }
  .header .header-menu-area {
    position: fixed;
    top: 0;
    right: auto;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area.closed {
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area.sp_back {
    background-color: transparent;
    animation: sp_back 0.3s 0.3s ease-in forwards;
  }
  @keyframes sp_back {
    0%   { background-color: transparent }
    100% { background-color: rgba(0, 0, 0, 0.5) }
  }
  .header .header-menu-area .header-menu-title {
    position: relative;
    padding: 0 20px 0 70px;
    background: #186f20;
    color: #fff;
    font-size: 24px;
    line-height: 50px;
  }
  .header .header-menu-area .header-menu-title.adminpage {
    background: #9d2a01;
  }
  .header .header-menu-area .header-menu-title .closed-menu,
  .header .header-menu-area .header-menu-title.adminpage .closed-menu {
    width: 50px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: url(../img/common/menu/icon_menu.png) no-repeat center center #292929;
    background-size: 30px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area.closed .header-menu-title .closed-menu {
    right: calc(100% - 50px);
    background: url(../img/common/menu/icon_menu_close.png) no-repeat center center #186f20;
    -webkit-filter: none;
    -ms-filter: none;
    filter: none;
  }
  .header .header-menu-area.closed .header-menu-title.adminpage .closed-menu {
    background-color: #9d2a01;
  }
  .header .header-menu-area .header-menu-title .closed-menu::before,
  .header .header-menu-area.closed .header-menu-title .closed-menu::before {
    content: "";
  }
  .header .header-menu-area .header-menu-title .header-menu-icon {
    display: none;
  }
  .header .header-menu-area .header-menu-contenner {
    background: #fff;
    border-bottom: 20px solid #292929;
  }
  .header .header-menu-area .header-menu-list a {
    padding: 0 30px 0 70px;
  }
  .header .header-menu-area .header-menu-close {
    display: none;
  }
}


/*********************************************************************
*  footer
*********************************************************************/
/***** footer *****/
.footer {
  width: 100%;
  background-color: #292929;
  text-align: left;
}
.footer .footerContenner {
  width: 900px;
  max-width: 100%;
  height: 80px;
  padding: 0 10px;
  margin: auto;
  overflow: hidden;
  box-sizing: border-box;
}
.footer .footerContenner .logo {
  height: 80px;
}
.footer .footerContenner .text {
  height: 50px;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .footer .footerContenner {
    height: 50px;
  }
  .footer .footerContenner .logo {
    height: 35px;
    padding: 7.5px 0;
  }
  .footer .footerContenner .text {
    height: 25px;
    padding-left: 0;
    padding-bottom: 8px;
  }
}

/***** return PageTop *****/
.footer .pageTop {
  position: fixed;
  bottom: 90px;
  left: calc(50% + 420px);
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .footer .pageTop {
    bottom: 30px;
    left: auto;
    right: 10px;
  }
}


/*********************************************************************
*  index
*********************************************************************/
.index {
  width: 100%;
  height: 260px;
  background-image: url(../img/common/login_bg.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index .login-title {
  padding-top: 90px;
  color: #000;
  font-size: 3.6rem;
  line-height: 1em;
}
@media screen and (max-width: 480px) {
  .index {
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.7);
  }
  .index .login-title {
    padding-top: 62px;
    font-size: 1.8rem;
  }
}



/*********************************************************************
*  entry
*********************************************************************/
.entry {
  width: 900px;
  max-width: calc(100% - 20px);
  background: #fff;
  padding: 0 0 30px;
  margin: auto;
  font-size: 1.4rem;
  line-height: 3rem;
}
.entry .section-entry-area {
  width: 800px;
  max-width: 100%;
  margin: auto
}
.entry .section-entry-area .section-entry-area-inner {
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  width: 100%;
  margin: auto;
}
.entry .section-entry-area .section-entry-area-inner .section-entry-area-title {
  width: 20%;
  border-bottom: 1px solid #fff;
  background-color: #9e9e9e;
  color: #fff;
  font-size: 1.8rem;
  line-height:50px;
}
.entry .section-entry-area .section-entry-area-inner .section-entry-area-input {
  position: relative;
  width: 78%;
  padding: 5px;
  margin: 0;
  border: 0;
  background-color: transparent;
  font-size: 1.8rem;
  line-height: 40px;
  text-align: left;
}
.entry .section-entry-area .section-entry-area-inner .section-entry-area-input input,
.entry .section-entry-area .section-entry-area-inner .section-entry-area-input select {
  position: static;
}
.entry .section-entry-area .section-entry-area-inner .section-entry-area-input .section-entry-area-input-attendance {
  line-height: 1em;
  color: #ff0000;
  font-size: 1.2rem;
}
.entry .section-entry-area .section-entry-area-inner .section-entry-area-input .section-entry-area-input-attendance2 {
  color: #ff0000;
  font-size: 1.2rem;
}
.entry .section-entry-area .section-location-btn {
  display: block;
  width: 310px;
  padding: 10px;
  margin: 20px auto;
  border-radius: 50px;
  background-color: #00447f;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .entry .section-entry-area {
    position: relative;
    overflow: auto;
  }
  .entry .section-entry-area .submit-area {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .entry .section-entry-area .section-entry-area-inner .section-entry-area-title {
    width: 100%;
    font-size: 1.6rem;
    line-height: 3em;
  }
  .entry .section-entry-area .section-entry-area-inner .section-entry-area-input {
    width: calc(100% - 10px);
    padding: 5px;
    font-size: 1.6rem;
    line-height: 2em;
  }
  .entry .section-entry-area .section-entry-area-inner .section-entry-area-input textarea {
    box-sizing: border-box;
  }
  .entry .section-entry-area .section-entry-area-inner .section-entry-area-input .section-entry-area-input-attendance2 {
    display: block;
  }
  .entry .section-entry-area .section-location-btn {
    width: 100%;
    padding: 10px 0;
  }
}


/*********************************************************************
*  select-first
*********************************************************************/
.select-first {
  position: relative;
  height: 700px;
  margin-top: -130px;
  background-image: url(../img/common/content_bg1.svg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.select-first .select-area {
  width: 900px;
  max-width: calc(100% - 20px);
  margin: auto;
}
.select-first .select-area .select-area-top {
  padding-top: 180px;
}
.select-first .select-area .select-area-top .select-area-top-text {
  font-size: 3.6rem;
  line-height: 60px;
}
.select-first .select-area .select-area-under .select-area-under-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-pack:distribute;
  -moz-flex-pack:distribute;
  -ms-flex-pack:distribute;
  -webkit-justify-content:space-around;
  -moz-justify-content:space-around;
  justify-content:space-around;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin: -30px auto 0;
}
.select-first .select-area .select-area-under .select-area-under-inner2 {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-pack:distribute;
  -moz-flex-pack:distribute;
  -ms-flex-pack:distribute;
  -webkit-justify-content:space-around;
  -moz-justify-content:space-around;
  justify-content:space-around;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
}
.select-first .select-area .select-area-under .select-area-under-icon {
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 5px -3px rgba(0,0,0,0.2);
  width: 130px;
  height: 130px;
}
.select-first .select-area .select-area-under .select-area-under-icon.active {
  background-color: #00447f;
  color: #FFF;
}
.select-first .select-area .select-area-under .select-area-under-inner .select-area-under-icon.middle-icon {
  margin-top: 40px;
  margin-bottom: 40px;
}
.select-first .select-area .select-area-under .select-area-under-inner .select-area-under-icon.bottom-icon {
  margin-top: 80px;
  margin-bottom: 40px;
}
.select-first .select-area .select-area-under .select-area-under-icon .select-area-under-icon-img {
  width: 50%;
  margin: 0 auto;
  padding-top: 2.5rem;
}
.select-first .select-area .select-area-under .select-area-under-icon .select-area-under-icon-img  img {
  width: 100%;
}
.select-first .select-area .select-area-under .select-area-under-icon .select-area-under-icon-text {
  font-size: 1.2rem;
  padding-bottom: 1rem;
  line-height: 12px;
}

@media screen and (max-width: 800px) {
  .select-first {
    height: 820px;
    background: none;
    background-color: rgb(255,255,255,0.7);
  }
  .select-first .select-area .select-area-under .select-area-under-inner {
    width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .select-first .select-area .select-area-under .select-area-under-inner2 {
    width: 60%;
  }
  .select-first .select-area .select-area-under .select-area-under-icon {
    margin: 1rem 0 0 !important;
  }
  .select-first .select-area .select-area-under .select-area-under-inner .select-area-under-icon {
    margin: 1rem 4rem 0 !important;
  }
}
@media screen and (max-width: 480px) {
  .select-first {
    height: 630px;
    background: none;
    background-color: rgb(255,255,255,0.7);
  }
  .select-first .select-area .select-area-top .select-area-top-text {
    font-size: 2.6rem;
    line-height: 36px;
  }
  .select-first .select-area .select-area-under .select-area-under-inner2 {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    margin: 0 0 0 -10px;
  }
  .select-first .select-area .select-area-under .select-area-under-icon {
    width :90px;
    height:90px;
  }
  .select-first .select-area .select-area-under .select-area-under-inner .select-area-under-icon {
    margin: 1rem 0 0 !important;
  }
  .select-first .select-area .select-area-under .select-area-under-icon .select-area-under-icon-img {
    padding-top: 1.4rem;
  }
  .select-first .select-area .select-area-under .select-area-under-icon .select-area-under-icon-text {
    font-size: 1.4rem;
    padding-bottom: 1rem;
  }
}


/*********************************************************************
*  select
*********************************************************************/
.select {
  width: 900px;
  max-width: 100%;
  padding-bottom: 30px;
  margin: -131px auto 0;
  background-image: url("../img/common/content_bg2.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 800px) {
  .select {
    margin-top: -120px;
  }
}
@media screen and (max-width: 480px) {
  .select {
    padding: 50px 0;
    margin-top: 0;
    background-color: rgb(255,255,255,0.7);
  }
}

/***** Index *****/
.select .form-area {
  padding-top: 131px;
}
.select .form-area .login-area {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}
.select .form-area .login-area-input {
  margin-top: 50px;
}
.select .form-area .passlink {
  padding: 30px 0 50px 0;
}
.select .form-area .passlink a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: underline
}
@media screen and (max-width: 480px) {
  .select .form-area {
    padding-top: 50px;
  }
  .select .form-area .login-area-input {
    margin: 30px 10px 0;
  }
}

.select .select-area {
  width: 600px;
  max-width: calc(100% - 20px);
  margin: 40px auto 0;
  background-color: #fff;
}
.select .select-area .entry-area {
  background-color: #FFF;
  width: 600px;
  max-width: 100%;
  padding: 50px 0 20px;
  box-shadow: -3px -3px 0 #a1a195 inset;
  font-size: 1.6rem;
  line-height: 2em;
}
@media screen and (max-width: 480px) {
  .select .select-area .entry-area {
    padding: 30px 10px;
    box-sizing: border-box;
  }
}


/***** Client_first *****/
.select .select-area-under {
  padding-top: 180px;
}
.select .select-area-under .section-first-submit-area {
  display:-webkit-box;
  display:-moz-box;
  display:-ms-flexbox;
  display:-webkit-flex;
  display:-moz-flex;
  display:flex;
  -webkit-flex-pack:distribute;
  -moz-flex-pack:distribute;
  -ms-flex-pack:distribute;
  -webkit-justify-content:space-around;
  -moz-justify-content:space-around;
  justify-content:space-around;
  -webkit-box-lines:multiple;
  -moz-box-lines:multiple;
  -webkit-flex-wrap:wrap;
  -moz-flex-wrap:wrap;
  -ms-flex-wrap:wrap;
  flex-wrap:wrap;
  width: 900px;
  max-width: 100%;
  padding-bottom: 50px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .select .select-area-under {
    padding-top: 60px;
  }
  .select .select-area-under .section-first-submit-area {
    width: auto;
    padding: 0 10px 50px;
  }
  .select .select-area-under .section-first-submit-area .section-submit-right {
    margin-top: 20px;
  }
}
