/*---------------------------------

  Reset CSS

---------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
  box-sizing: border-box;
}

/*
  Base
---------------------------------*/
body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #2B2B2B;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

input[type=text],
button,
select {
  padding: 0;
  background-color: transparent;
  border: 0;
  color: inherit;
  font-size: inherit;
  outline: none;
  cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	     appearance: none;
}

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

.pc {
  display: block;
}
.sp {
  display: none;
}

@media screen and (max-width:768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*
  header
---------------------------------*/
header {
  margin-top: 120px;
}
.header-btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 380px;
  height: 80px;
  border: 1px solid #E00000;
  font-size: 28px;
  text-decoration: none;
  color: #E00000;
  font-weight: bold;
}
.header-btn:hover {
  background: #E00000;
  color: #fff;
}
.header-btn span::after {
  display: inline-block;
  width: 0;
  height: 18px;
  margin-left: 20px;
  border-bottom: 1px solid #fff;
  background: url(images/img-arrow02@2x.png) right 90% no-repeat;
  background-size: 50%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: content-box;
}
.header-btn:hover span::after {
  width: 70px;
  content: "";
}
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding-right: 20px;
  padding-left: 20px;
  z-index: 1;
}
.header-nav-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  max-width: 1720px;
  height: 120px;
  margin: 0 auto;
}

.header-nav-inner .logo-title span{
	margin-left:1em;
}
.header-nav-inner .logo-title a{
	color:#000000;
	font-size:1.4em;
	font-weight:bold;
	text-decoration:none;
}
.header-nav-inner .logo-title a:hover{
	color: #E00000;
	text-decoration:underline;
}
.tab-area input[type=checkbox]{
	display:none;
}
.header-mv {
  position: relative;
}
.header-mv-img {
  width: 100%;
}
.header-mv-btn {
  position: absolute;
  top: 29vw;
  left: 9.5vw;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 31.25vw;
  height: 5.2vw;
  border: 1px solid #fff;
  font-size: 1.6vw;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.header-mv-btn:hover {
  background: #fff;
  color: #E00000;
}
.header-mv-btn span::after {
  display: inline-block;
  width: 0;
  height: 0.9vw;
  margin-left: 1vw;
  border-bottom: 1px solid #E00000;
  background: url(images/img-arrow03@2x.png) right 90% no-repeat;
  background-size: 50%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: content-box;
}
.header-mv-btn:hover span::after {
  width: 3.6vw;
  content: "";
}
.header-mv-scroll {
  position: absolute;
  top: 87%;
  left: 43%;
  display: block;
  width: 9.4vw;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 0.7vw;
  text-decoration: none;
  text-align: left;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(90deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(90deg) translate(20px, 0);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    -webkit-transform: rotate(90deg) translate(0, 0);
            transform: rotate(90deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(90deg) translate(20px, 0);
            transform: rotate(90deg) translate(20px, 0);
    opacity: 0;
  }
}
.header-nav-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.header-nav-content-tel {
  margin-left: 50px;
  font-size: 21px;
  color: #E00000;
  font-weight: bold;
}
.header-nav-content-tel span {
  display: block;
  margin-top: 5px;
  border-top: 1px solid;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}

.tab-area {
  display: none;
}


@media screen and (max-width:1920px) {
  header {
    margin-top: 6.25vw;
  }
  .header-btn {
    width: 19.8vw;
    height: 4.1vw;
    font-size: 1.46vw;
  }
  .header-btn span::after {
    height: 0.9vw;
    margin-left: 1vw;
  }
  .header-btn:hover span::after {
    width: 3.6vw;
    content: "";
  }
  .header-nav-inner {
    height: 6.25vw;
  }
.header-nav-inner .logo-title .pc{
	display:inline;
	vertical-align:middle;
}
  .header-nav-content img {
    width: 19.8vw;
  }
  .header-nav-content-tel {
    margin-left: 2.6vw;
    font-size: 1.1vw;
  }
  .header-nav-content-tel span {
    font-size: 1.875vw;
  }
}
@media screen and (max-width:768px) {
  header {
    margin-top: 74px;
  }
  .header-nav-inner {
    height: 74px;
  }
.header-nav-inner .logo-title .sp{
	display:inline;
	vertical-align:middle;
}
  .header-nav-content {
    display: none;
  }
  .header-mv-btn {
    top: 152vw;
    left: 4.35vw;
    width: 91.3vw;
    height: 21.2vw;
    font-size: 4.1vw;
  }
  .header-mv-btn span::after {
    height: 2.6vw;
    margin-left: 2.6vw;
    background: url(images/img-arrow03@2x.png) right 90% no-repeat;
    background-size: 25%;
  }
  .header-mv-btn:hover span::after {
    width: 11.7vw;
    content: "";
  }
  .header-mv-scroll {
    display: none;
  }

  .tab-area {
    display: block;
    margin-top: -15px;
  }
  .tab-area a {
    display: block;
    padding-top: 1em;
    padding-bottom: 1em;
    color: #fff;
    text-decoration: none;
  }
  .tab-area .tab-item {
    position: absolute;
    top: 74px;
    right: 0;
    width: 200px;
    height: 0;
    background-color: #E00000;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    opacity: 0;
    z-index: 1;
  }
  .tab-area .tab-item li {
    padding-left: 1em;
    padding-right: 1em;
    height: 0;
  }
  .tab-area .tab-item li:hover a {
    opacity: 0.7;
  }
  .tab-area .tab-item li:not(:last-child) a {
    border-bottom: 1px solid #fff;
  }
  .tab-area label {
    position: relative;
    display: block;
    cursor: pointer;
  }
  .tab-area label::before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    position: absolute;
    top: -0.5em;
    right: 0;
    content: url(images/header-nav-ico.png);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 2em;
  }
  .tab-area input:checked + label::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
  }
  .tab-area input:checked + label + .tab-item {
    opacity: 1;
    height: auto;
  }
  .tab-area input:checked + label + .tab-item li {
    height: auto;
  }
}

@media screen and (max-width:480px) {
  .header-mv-btn span::after {
    background: url(images/img-arrow03@2x.png) right 90% no-repeat;
    background-size: 50%;
  }
}
/*
  ourVision
---------------------------------*/
#ourVision {
  margin-top: -120px;
  padding-top: 120px;
}
.our-vision-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: url(images/bg01.png) center center;
  line-height: 1.5;
}
.our-vision-inner p:not(:last-child) {
  margin-bottom: 1.5em;
}
.our-vision__title {
  margin-bottom: 30px;
}
.our-vision__title img {
  margin: 0 auto;
}
.our-vision__title-sub {
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width:1920px) {
  #ourVision {
    margin-top: -6.25vw;
    padding-top: 6.25vw;
  }
}
@media screen and (max-width:768px) {
  #ourVision {
    margin-top: -73px;
    padding-top: 73px;
  }
  .our-vision-inner {
    padding-top: 25px;
    padding-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .our-vision__title {
    margin-bottom: 16px;
  }
  .our-vision__title img {
    width: 134px;
  }
  .our-vision__title-sub {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

/*
  business
---------------------------------*/
.business-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: linear-gradient(-26.5deg, #F2F2F2 0%, #F2F2F2 50%, #F8F8F8 50%, #F8F8F8 100%);
  line-height: 1.5;
}
.business__title {
  margin-bottom: 30px;
}
.business__title img {
  margin: 0 auto;
}
.business-content01 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 890px;
}
.business-content02 {
  display: -webkit-box;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
  margin-top: 60px;
  padding-right: 115px;
  padding-left: 115px;
  max-width: 890px;
}
.business-content-box {
  margin-right: 20px;
  margin-left: 20px;
}
.business-content-box p {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  height: 54px;
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width:768px) {
  #business {
    margin-top: -73px;
    padding-top: 73px;
  }
  .business-inner {
    padding-top: 40px;
    padding-bottom: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .business__title {
    margin-bottom: 16px;
  }
  .business__title img {
    width: 117px;
  }
  .business-content01,
  .business-content02 {
    display: block;
    margin-top: 0;
  }
  .business-content01 {
    margin-top: 30px;
  }
  .business-content02 {
    padding-left: 0;
    padding-right: 0;
  }
  .business-content-box img {
    width: 150px;
    margin: 0 auto;
  }
  .business-content-box p {
    margin-top: 16px;
    margin-bottom: 30px;
    font-size: 16px;
  }
}

/*
  job
---------------------------------*/
#job {
  overflow: hidden;
}
.job-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  line-height: 1.5;
}
.job__title {
  margin-bottom: 30px;
}
.job__title img {
  margin: 0 auto;
}

.job-content {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 60px;
}
.job-content li {
  display: -webkit-box;
  display: flex;
  border: 1px solid #DBDBDB;
}
.job-content li:not(:last-child) {
  margin-bottom: 20px;
}
.job-content img {
  padding: 8px;
  background: #f8f8f8;
}
.job-content-inner {
  padding: 24px 30px 0;
  text-align: left;
}
.job-content-inner__job {
  width: 240px;
  margin-bottom: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  background: #CC0000;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.job-content li:nth-child(even) img {
  -webkit-box-ordinal-group: 2;
          order: 1;
}
@media screen and (max-width:768px) {
  #job {
    margin-top: -73px;
    padding-top: 73px;
  }
  .job-inner {
    padding-top: 40px;
    padding-bottom: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .job__title {
    margin-bottom: 16px;
  }
  .job__title img {
    width: 86px;
  }
  .job-content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .job-content li {
    position: relative;
    display: block;
    width: 345px;
    margin: 0 auto;
  }
  .job-content-inner {
    padding: 10px;
  }
  .job-content img {
    width: 129px;
    padding: 4px;
  }
  .job-content-inner__job {
    position: absolute;
    width: 196px;
    font-size: 16px;
  }

  .job-content li:nth-child(odd) .job-content-inner__job {
    top: 34px;
    right: 10px;
  }
  .job-content li:nth-child(even) .job-content-inner__job {
    top: 34px;
    left: 10px;
  }
  .job-content li:nth-child(even) {
    text-align: right;
  }
  .job-content li:nth-child(even) img {
    display: inline-block;
  }
  .job-after-img {
    width: 100%;
  }
}

/*
  environment
---------------------------------*/
.environment-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: url(images/bg01.png) center center;
  line-height: 1.5;
}
.environment__title {
  margin-bottom: 30px;
}
.environment__title img {
  margin: 0 auto;
}
.environment-ico-area {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  max-width: 670px;
  margin: 0 auto;
  margin-top: 60px;
}
.environment-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 50px;
  font-weight: bold;
}
.environment-content-inner {
  width: 100%;
  border: 1px solid #E00000;
  background: #fff;
}
.environment-content-inner:first-child {
margin-right: 20px;
}
.environment-content__title {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #E00000;
  color: #fff;
  font-size: 18px;
}

.environment-content__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.environment-content__list ul {
  display: inline-block;
  text-align: left;
}
.environment-content__list ul li::before {
  content: '・';
}
@media screen and (max-width:768px) {
  #environment {
    margin-top: -73px;
    padding-top: 73px;
  }
  .environment-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .environment__title {
    margin-bottom: 16px;
  }
  .environment__title img {
    width: 156px;
  }
  .environment-ico-area {
    display: block;
    margin-top: 30px;
    margin-bottom: 0;
  }
  .environment-ico-area img {
    width: 170px;
    margin: 0 auto 30px;
  }
  .environment-content {
    display: block;
    margin-top: 30px;
  }
  .environment-content__title {
    padding: 10px;
    font-size: 16px;
  }
  .environment-content-inner {
    width: 345px;
    margin: 0 auto;
  }
  .environment-content-inner:first-child {
    margin-right: auto;
    margin-bottom: 16px;
  }
  .environment-content__list {
    height: auto;
  }
}

/*
  flow
---------------------------------*/
.flow-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: linear-gradient(-26.5deg, #FDDDDD 0%, #FDDDDD 50%, #FDE5E5 50%, #FDE5E5 100%);
  line-height: 1.5;
}
.flow__title {
  margin-bottom: 30px;
}
.flow__title-sub {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 40px;
  font-weight: bold;
}
.flow__title-sub::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 30.4%;
  height: 1px;
  display: block;
  border-top: 1px solid #E00000;
  content: "";
}
.flow__title-sub::after {
  position: absolute;
  top: 0.8em;
  right: 0;
  width: 30.4%;
  height: 1px;
  display: block;
  border-top: 1px solid #E00000;
  content: "";
}
.flow__title img {
  margin: 0 auto;
}
.flow-step {
  display: -webkit-box;
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
.flow-step li:not(:last-child) {
  margin-right: 2%;
}
@media screen and (max-width:768px) {
  #flow {
    margin-top: -73px;
    padding-top: 73px;
  }
  .flow-inner {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .flow__title {
    margin-bottom: 16px;
  }
  .flow__title img {
    width: 98px;
  }
  .flow__title-sub {
    width: 345px;
    font-size: 16px;
    margin-bottom: 30px;
  }
  .flow__title-sub::before,
  .flow__title-sub::after {
    width: 52px;
  }
  .flow-step {
    display: block;
  }
  .flow-step img {
    margin: 0 auto 20px;
  }
}

/*
  recruit
---------------------------------*/
.recruit-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  line-height: 1.5;
}
#recruit p:not(:last-child) {
  margin-bottom: 1.5em;
}
.recruit__title {
  margin-bottom: 30px;
}
.recruit__title img {
  margin: 0 auto;
}
.recruit-table {
  max-width: 1000px;
  margin: 0 auto;
  border-collapse:  collapse;
}
.recruit-table th,
.recruit-table td {
  border: 1px solid #DBDBDB;
}
.recruit-table th {
  width: 22%;
  background: #E00000;
  vertical-align: middle;
  color: #fff;
}

.recruit-table td {
  text-align: left;
  padding: 26px 30px;
  line-height: 1.5;
}
.recruit-table td span.pc {
  display: inline-block;
}
@media screen and (max-width:768px) {
  #recruit {
    margin-top: -73px;
    padding-top: 73px;
  }
  .recruit-inner {
    padding-top: 40px;
    padding-bottom: 20px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .recruit__title {
    margin-bottom: 16px;
  }
  .recruit__title img {
    width: 108px;
  }
  .recruit-table {
    width: 345px;
    margin: 0 auto;
    font-size: 16px;
  }
  .recruit-table th {
    width: 94px;
  }
  .recruit-table td {
    padding: 15px;
  }
  .recruit-table td span.pc {
    display: none;
  }
}


/*
  entry
---------------------------------*/
.entry-inner {
  padding-top: 58px;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: url(images/bg03.png) center center;
  line-height: 1.5;
}
.entry__title {
  margin-bottom: 30px;
}
.entry__title img {
  margin: 0 auto;
}
.entry-attention {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid #DBDBDB;
  text-align: left;
}
.entry-attention__title {
  margin-bottom: 20px;
  color: #E00000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.entry-form {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 30px;
  padding-bottom: 40px;
  background: #fff;
  border: 1px solid #DBDBDB;
  text-align: left;
}
.entry-form__title {
  margin-bottom: 20px;
  padding: 6px 20px 5px;
  background: #F8F8F8;
  color: #E00000;
  font-size: 18px;
  font-weight: bold;
}
.entry-form-box {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-bottom: 1.5em;
}
.entry-form-inner {
  width: 32%;
  font-weight: bold;
}
.entry-form-inner span {
  color: #E00000;
}
.entry-form-input {
  display: -webkit-box;
  display: flex;
  -webkit-box-flex: 1;
          flex: 1;
}
.entry-form-input p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}
.entry-form-input p:not(:last-child) {
  margin-right: 40px;
}
.entry-form-input p span {
  display: inline-block;
  width: 56px;
  text-align: center;
}
.entry-form-input p input {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  font-size: 16px;
}
.entry-form-input p input::-webkit-input-placeholder {
  color: #DBDBDB;
}
.entry-form-input p input::-moz-placeholder {
  color: #DBDBDB;
}
.entry-form-input p input:-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-input p input::-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-input p input::placeholder {
  color: #DBDBDB;
}
.entry-form-select {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
	overflow: hidden;
	text-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}
.entry-form-select p {
  position: relative;
  width: 100%;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  font-size: 16px;
}
.entry-form-select p::before {
	position: absolute;
	top: 16px;
  right: 10px;
  display: block;
	width: 8px;
	height: 6px;
  background: url(images/img-arrow@2x.png);
  background-size: cover;
	content: "";
}
.entry-form-select p select {
	width: 100%;
}
.entry-form-select p select::-ms-expand {
    display: none;
}
.entry-form-select p select {
  padding: 8px 20px;
	color: #666666;
}
.entry-form-select p:not(:last-child) {
  margin-right: 20px;
}
.entry-form-select:not(:last-child) {
  margin-right: 30px;
}
/*.entry-form__radio-btn {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding-right: 40px;
  padding-left: 24px;
  position: relative;
  width: auto;
}
.entry-form__radio-area {
  display: none;
}
.entry-form__radio-btn::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 1px solid #2B2B2B;
  border-radius: 50%;
  content: '';
}
.entry-form__radio-btn::after {
  position: absolute;
  top: 50%;
  left: 4px;
  display: block;
  width: 10px;
  height: 10px;
  background: #E00000;
  border-radius: 50%;
  margin-top: -4px;
  opacity: 0;
  content: '';
}
input[type=radio].entry-form__radio-area:checked + .entry-form__radio-btn::after {
  opacity: 1;
}*/
.entry-form-address {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}
.entry-form-address a {
  display: inline-block;
  width: 40%;
  color: #006CFF;
}
.entry-form-address p {
  -webkit-box-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: flex;
}
.entry-form-address p:not(:last-child) {
  margin-right: 40px;
}
.entry-form-address p input {
  width: 100%;
  padding: 8px 20px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  font-size: 16px;
}
.entry-form-address p input::-webkit-input-placeholder {
  color: #DBDBDB;
}
.entry-form-address p input::-moz-placeholder {
  color: #DBDBDB;
}
.entry-form-address p input:-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-address p input::-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-address p input::placeholder {
  color: #DBDBDB;
}
.entry-form-address p span {
  display: inline-block;
  padding-right: 20px;
  padding-left: 20px;
}
.entry-form-address__btn {
  margin-left: 32%;
  padding: 7px 20px;
  border-radius: 5px;
  background: #E00000;
  color: #fff;
  margin-bottom: 20px;
}
.entry-form-select.select02 p {
  -webkit-box-flex: 1;
          flex: 1;
}
.entry-form-select.select02 a {
  display: inline-block;
  width: 74%;
  color: #006CFF;
}

.entry-form-tel {
  -webkit-box-flex: 1;
          flex: 1;
}
.entry-form-tel p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
}
.entry-form-tel p:not(:last-child) {
  margin-right: 40px;
}
.entry-form-tel p input {
  width: calc(100%/5);
  padding: 8px 20px;
  border: 1px solid #DBDBDB;
  border-radius: 5px;
  font-size: 16px;
}
.entry-form-tel p input::-webkit-input-placeholder {
  color: #DBDBDB;
}
.entry-form-tel p input::-moz-placeholder {
  color: #DBDBDB;
}
.entry-form-tel p input:-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-tel p input::-ms-input-placeholder {
  color: #DBDBDB;
}
.entry-form-tel p input::placeholder {
  color: #DBDBDB;
}
.entry-form-tel p span {
  display: inline-block;
  padding-right: 34px;
  padding-left: 35px;
}

.entry-form-submit {
  display: block;
  width: 300px;
  margin: 40px auto 0;
  padding-top: 19px;
  padding-bottom: 19px;
  background: #00C13B;
  color: #fff;
  font-size: 22px;
  border-bottom: 5px solid #009651;
  text-align: center;
}
.entry-form-submit::after {
  display: inline-block;
  width: 0;
  height: 18px;
  margin-left: 20px;
  border-bottom: 1px solid #fff;
  background: url(images/img-arrow02@2x.png) right 90% no-repeat;
  background-size: 50%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-sizing: content-box;
}
.entry-form-submit:hover::after {
  width: 70px;
  content: "";
}
.entry-form-submit:active {
  margin-top: 45px;
  border-bottom: 0;
}
.mfp_err{
	clear:none;
	display:block;
}

@media screen and (max-width:768px) {
  #entry {
    margin-top: -73px;
    padding-top: 73px;
  }
  .entry-inner {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .entry__title {
    margin-bottom: 16px;
  }
  .entry__title img {
    width: 108px;
  }
  .entry-attention {
    width: 345px;
    padding: 15px;
  }
  .entry-form {
    width: 345px;
    padding: 15px;
    padding-bottom: 35px;
    font-size: 16px;
  }
  .entry-form-box {
    display: block;
    margin-bottom: 16px;
  }
  .entry-form-inner {
    width: 100%;
    margin-bottom: 12px;
  }
  .entry-form-input {
    display: block;
  }
  .entry-form-input p {
    -moz-text-align-last: left;
         text-align-last: left;
  }
  .entry-form-input p:not(:last-child) {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .entry-form-address {
    display: block;
  }
  .entry-form-address p:not(:last-child) {
    margin-right: 0;
  }
  .entry-form-address p span {
    padding-right: 10px;
    padding-left: 9px;
  }
  .entry-form-address a {
    width: 100%;
    margin-top: 12px;
  }
  .entry-form-address__btn {
    margin-left: 0;
  }
  .entry-form-select p:not(:last-child) {
    margin-right: 0;
  }
  .entry-form-select {
    width: 60%;
    margin-bottom: 12px;
  }
  .entry-form-select span {
    display: inline-block;
    padding-left: 20px;
  }
  .entry-form-select.select02 {
    width: 100%;
  }
  .entry-form-select.select02 a {
    width: 56%;
    text-align: right;
  }
  .entry-form__title {
    margin-bottom: 16px;
    padding: 7px 0 7px 10px;
    font-size: 16px;
  }
  .entry-form-submit {
    margin-top: 30px;
  }
  .entry-form-tel p span {
    padding-right: 3px;
    padding-left: 3px;
  }
  .entry-form-submit {
    display: block;
    width: 315px;
    margin: 30px auto 0;
    padding-top: 17px;
    padding-bottom: 16px;
    background: #00C13B;
  }
  .entry-form-submit::after {
    height: 10px;
  }
  .entry-form-submit:hover::after {
    width: 45px;
  }
  
}


/*
  footer
---------------------------------*/
footer {
  padding: 20px 20px;
  background: #E00000;
}
footer a{
	color:#FFF;
	margin-bottom:10px;
}
footer small {
  font-size: 10px;
  color: #fff;
}
@media screen and (max-width:768px) {
  footer {
    padding: 10px 10px;
  }
}

/*
  privacy
---------------------------------*/
section#privacy div,section#isms div{
	overflow-y:scroll;
	width:100%;
	height:20em;
	margin:auto;
	padding: 1em;
   border: #E00000 2px solid;
}
section#isms .right{
	float:right;
	text-align:left;
	width:auto;
	margin:3em 0 0 0;
}
section#privacy .right{
	float:right;
	text-align:left;
	width:auto;
	margin:1em 0 4em 0;
}
section#privacy ul{
	list-style:none;
	width:70%;
	margin:10px auto;
	display:flex;
	justify-content:center;
}
section#privacy ul li{
	padding: 10px 20px ;
}
@media (max-width: 750px){
	section#company table,section#history table,section#isms table{
		width:90%;
		margin:auto;
	}
		section#company table th,section#company table td,section#history table th,section#history table td,section#isms table th,section#isms table td{
			display:block;
			text-align:left;
			width:100%;
			padding:0;
		}
			section#company table th,section#history table th,section#isms table th{
				font-size:1em;
			}
			section#company table td,section#history table td,section#isms table td{
				margin-bottom:1em;
			}
section#privacy ul {
    list-style: none;
    width: 80%;
    margin: 10px auto;
    display: flex;
    justify-content: flex-start;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0;
}
section#privacy ul li {
    width:100%;
}
}
