@charset "UTF-8";

/* CSS Document */
/**********************************
Reset
**********************************/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: 300;
}
body {
  line-height: 1;
}
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
nav ul,
ul,
li {
  list-style: none;
}
li a {
  text-decoration: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
img {
  vertical-align: bottom;
}
/**********************************
Settings
**********************************/
html {
  font-size: 16px;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #111;
  line-height: 1.5em;
  width: 100%;
}
/**********************************
Hover
**********************************/
a {
  color: #dc2f30;
  font-weight: 500;
  transition: all .2s ease;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a img {
  transition: all .2s ease;
}
a img:hover {
  opacity: .7;
}
/**********************************
Header Navigation
**********************************/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 901;
  transition: all .3s ease;
}
header.moved {
  background-color: rgba(255, 255, 255, .9);
}
.header_wrap {
  width: auto;
  max-width: 1366px;
  padding: 14px 1%;
  margin: 0 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.header_wrap .header_logo {
  /* width: 138px; */
  width: 228px;
}
.header_wrap .header_logo img {
  width: 100%;
  height: auto;
}
.nav_pc {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-left: auto;
}
.nav_pc nav {
  display: -webkit-box;
  display: flex;
}
.nav_pc nav > ul {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.nav_pc nav > ul > li {
  margin: 0 22px;
  position: relative;
}
.nav_pc nav > ul > li:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  left: 0;
  bottom: -1px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.nav_pc nav > ul > li:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.nav_pc nav > ul > li > a {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
}
.nav_pc nav .tel_num {
  font-size: 0.75rem;
  line-height: 1.3em;
  color: #dc2f30;
  text-align: center;
  margin: 7px 0 0 14px;
}
.nav_pc nav .tel_num a {
  display: block;
  cursor: pointer;
}
.nav_pc nav .tel_num a span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  padding-left: 24px;
  position: relative;
}
.nav_pc nav .tel_num a span:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../images/phone_icon_red.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -9px;
}
.header_wrap > .contact {
  margin-left: 30px;
  width: 150px;
}
.header_wrap > .contact a {
  display: block;
  border: solid 2px #dc2f30;
  background-color: #dc2f30;
  padding: 6px 2px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
}
.header_wrap > .contact a:hover {
  background-color: #f8dcdc;
}
.header_wrap > .contact a:hover span {
  color: #dc2f30;
}
.header_wrap > .contact a span {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}
.header_wrap > .contact a span:before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background-image: url(../images/mail_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7.5px;
}
.header_wrap > .contact a:hover span:before {
  background-image: url(../images/mail_icon_red.svg);
}
.nav_sp {
  display: none;
}
.contents_wrap {
  width: 100%;
  margin-top: 75px;
}
.breadcrumbs {
  width: auto;
  max-width: 1088px;
  padding: 0 1%;
  margin: 24px auto;
}
/**Modal**/
.modal_bg {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 800;
  min-width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.7);
  z-index: 999;
  cursor: pointer;
}
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 1000;
  width: 58%;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.modal > p {
  width: auto;
  padding: 56px 26px 36px;
  line-height: 1.5em;
}
.modal_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 0.875rem;
  cursor: pointer;
}
body.no_scroll {
  overflow: hidden;
}
/**********************************
TOP Page
**********************************/
/***MV***/
.mv_pc {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.mv_pc .mv_wrap {
  position: relative;
}
.mv_pc .mv_wrap .mv_copy {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -64px;
}
.mv_pc .mv_wrap .mv_copy h2 {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  font-size: 2.5rem;
  letter-spacing: .5px;
  color: #fff;
}
.mv_pc .mv_wrap .mv_copy h2 span {
  background-color: #dc2e30;
  padding: 4px 8px;
  font-weight: 700;
}
.mv_pc .mv_wrap .mv_copy p {
  width: 92%;
  max-width: 1280px;
  margin: 48px auto 0;
  color: #fff;
}
.mv_pc .mv_wrap .mv_copy p span {
  font-size: 1.375rem;
  line-height: 2.5em;
  padding: 4px 8px;
  font-weight: 500;
  background-color: #111;
}
.mv_pc .mv_wrap .mv_photo {
  width: 100%;
}
.mv_pc .mv_wrap .mv_photo img {
  width: 100%;
  height: auto;
}
/***当社について***/
#about_us {
  width: 100%;
  background-color: #f5f5f5;
}
#about_us .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 86px 1%;
  margin: 0 auto;
}
#about_us .section_inner .two_column {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
#about_us .section_inner .two_column .left_box {
  width: 52%;
}
#about_us .section_inner .two_column .left_box h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2f30;
  border-left: solid 4px #dc2e30;
  padding: 0 0 8px 14px;
}
#about_us .section_inner .two_column .left_box h2 span {
  display: block;
  color: #111;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin: 6px 0 0 -2px;
}
#about_us .section_inner .two_column .left_box > p {
  margin-top: 34px;
  line-height: 1.7em;
}
#about_us .section_inner .two_column .right_box {
  width: 45%;
}
#about_us .section_inner .two_column .right_box img {
  width: 100%;
  height: auto;
}

/***事業内容***/
#our_services {
  width: 100%;
}
#our_services .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 86px 1% 146px;
  margin: 0 auto;
}
#our_services .section_inner > h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2f30;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
#our_services .section_inner > h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 98px;
  height: 4px;
  background-color: #dc2e30;
  left: 50%;
  bottom: 0;
  margin-left: -49px;
}
#our_services .section_inner > h2 span {
  display: block;
  color: #111;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: 10px;
}
#our_services .section_inner > p {
  margin-top: 34px;
  line-height: 1.7em;
  text-align: center;
}
#our_services .section_inner .service_wrap {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}
#our_services .section_inner .service_wrap .inner_box {
  width: 48%;
  margin-top: 64px;
}
#our_services .section_inner .service_wrap .inner_box:nth-of-type(2),
#our_services .section_inner .service_wrap .inner_box:nth-of-type(4) {
  margin: 64px auto 0;
}

#our_services .section_inner .service_wrap .inner_box .photo_wrap {
  width: 100%;
}
#our_services .section_inner .service_wrap .inner_box .photo_wrap img {
  width: 100%;
  height: auto;
}
#our_services .section_inner .service_wrap .inner_box .link_text {
  width: auto;
}
#our_services .section_inner .service_wrap .inner_box .link_text a {
  display: block;
  width: auto;
  padding: 10px 0 10px 12px;
  border-bottom: solid 1px #dc2f30;
  color: #111;
  text-decoration: none;
  position: relative;
}
#our_services .section_inner .service_wrap .inner_box .link_text a:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  background-image: url(../images/link_arrow_red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .2s ease;
}

#our_services .section_inner .service_wrap .inner_box .link_text a:hover:before {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

/***採用情報***/
#recruit {
  width: 100%;
  background-color: #f5f5f5;
}
#recruit .section_inner .separator {
  width: 100%;
  max-width: 1920px;
  height: 412px;
  margin: 0 auto;
  background-image: url(../images/recruit_photo.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#recruit .section_inner .intro {
  width: auto;
  max-width: 1088px;
  padding: 86px 1% 136px;
  margin: 0 auto;
}
#recruit .section_inner .intro h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2f30;
  border-left: solid 4px #dc2e30;
  padding: 0 0 8px 14px;
}
#recruit .section_inner .intro h2 span {
  display: block;
  color: #111;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin: 6px 0 0 -2px;
}
#recruit .section_inner .intro > p {
  margin-top: 34px;
  line-height: 1.7em;
}
#recruit .section_inner .intro .more_btn {
  margin: 56px auto 0;
  width: 256px;
}
#recruit .section_inner .intro .more_btn a {
  display: block;
  border: solid 2px #dc2f30;
  background-color: #dc2f30;
  color: #fff;
  padding: 14px 2px 16px;
  border-radius: 34px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
}
#recruit .section_inner .intro .more_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  background-image: url(../images/link_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .2s ease;
}
#recruit .section_inner .intro .more_btn a:hover {
  background-color: #f8dcdc;
  color: #dc2f30;
}
#recruit .section_inner .intro .more_btn a:hover:before {
  background-image: url(../images/link_arrow_red.svg);
}

/***会社概要***/
#company {
}
#company .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 124px 1% 156px;
  margin: 0 auto;
}
#company .section_inner > h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2f30;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
#company .section_inner > h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 98px;
  height: 4px;
  background-color: #dc2e30;
  left: 50%;
  bottom: 0;
  margin-left: -49px;
}
#company .section_inner > h2 span {
  display: block;
  color: #111;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: 12px;
}
#company .section_inner .profile_table {
  margin-top: 56px;
  width: 100%;
}
#company .section_inner .profile_table table {
  width: 100%;
  border-top: solid 1px #ddd;
}
#company .section_inner .profile_table table tr {
  border-bottom: solid 1px #ddd;
}
#company .section_inner .profile_table table th {
  width: 18%;
  padding: 24px 2%;
  text-align: left;
  font-weight: 700;
  color: #dc2f30;
}
#company .section_inner .profile_table table td {
  padding: 24px 2%;
  line-height: 1.7em;
}
/***お問い合わせ***/
#contact {
  width: 100%;
  background-color: #626060;
}
#contact .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 124px 1% 146px;
  margin: 0 auto;
}
#contact .section_inner > h2 {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
#contact .section_inner > h2 span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-top: 18px;
}
#contact .section_inner > p {
  margin-top: 34px;
  color: #fff;
  text-align: center;
  line-height: 2em;
}
#contact .section_inner .tel_num {
  margin-top: 48px;
  color: #fff;
  text-align: center;
  font-size: 0.875rem;
}
#contact .section_inner .tel_num a {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
#contact .section_inner .tel_num a span {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
  padding-left: 30px;
  position: relative;
}
#contact .section_inner .tel_num a span:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-image: url(../images/phone_icon_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
}
#contact .section_inner .contact_table {
  width: 100%;
  background-color: #fff;
  margin-top: 48px;
  padding: 58px 0 90px;
}
#contact .section_inner .contact_table table {
  width: 86%;
  margin: 0 auto;
}
#contact .section_inner .contact_table table tr {
}
#contact .section_inner .contact_table table th {
  font-weight: 700;
  display: block;
  text-align: left;
  padding: 8px 10px;
}
#contact .section_inner .contact_table table th span {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #dc2f30;
  color: #fff;
  padding: 2px 6px 3px;
  border-radius: 4px;
  margin-left: 10px;
}
#contact .section_inner .contact_table table td {
  display: block;
  padding: 0 8px 24px;
}
#contact .section_inner .contact_table table td .wpcf7-text,
#contact .section_inner .contact_table table td .wpcf7-textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: solid 1px #616060;
  border-radius: 6px;
}
#contact .section_inner .contact_table table td .textL {
  padding: 12px 1.5%;
  width: 97%;
}
#contact .section_inner .contact_table .pp_info {
  text-align: center;
  margin-top: 24px;
}
#contact .section_inner .contact_table .pp_info a {
  font-weight: 400;
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
#contact .section_inner .contact_table .pp_info a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -7px;
}
#contact .section_inner .contact_table .submit_btn {
  width: 300px;
  margin: 56px auto 0;
  position: relative;
}
#contact .section_inner .contact_table .submit_btn .wpcf7-submit {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  border: solid 2px #dc2f30;
  background-color: #dc2f30;
  color: #fff;
  font-size: 1rem;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 20px 14px;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
#contact .section_inner .contact_table .submit_btn .wpcf7-submit:hover {
  background-color: #f8dcdc;
  color: #dc2f30;
}
#contact .section_inner .contact_table .submit_btn:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  background-image: url(../images/link_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#contact .section_inner .contact_table .submit_btn:hover:before {
  background-image: url(../images/link_arrow_red.svg);
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7 form .wpcf7-response-output {
  background-color: #fff;
}

/**********************************
Sub Page
**********************************/
.sub_page .page_title {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.sub_page .page_title .page_title_wrap {
  width: 100%;
  padding: 120px 0;
  background-image: url(../images/subpage_kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sub_page .page_title .page_title_wrap h2 {
  width: 376px;
  margin: 0 auto;
  padding: 8px 0 18px;
  text-align: center;
  color: #ffff;
  background-color: #dc2e30;
  font-weight: 500;
}
.sub_page .page_title .page_title_wrap h2 span {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 12px;
}
/*採用情報*/
#recruit01 .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 86px 1%;
  margin: 0 auto;
}
#recruit01 .section_inner > p {
  text-align: center;
  line-height: 1.9em;
}

#recruit02 .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 46px 1% 156px;
  margin: 0 auto;
}
#recruit02 .section_inner > h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #dc2e30;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
}
#recruit02 .section_inner > h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 98px;
  height: 4px;
  background-color: #dc2e30;
  left: 50%;
  bottom: 0;
  margin-left: -49px;
}
#recruit02 .section_inner > h2 span {
  display: block;
  color: #111;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: 12px;
}
#recruit02 .section_inner .job_table {
  margin-top: 56px;
  width: 100%;
}
#recruit02 .section_inner .job_table table {
  width: 100%;
  border-top: solid 1px #ddd;
}
#recruit02 .section_inner .job_table table tr {
  border-bottom: solid 1px #ddd;
}
#recruit02 .section_inner .job_table table th {
  width: 18%;
  padding: 24px 2%;
  text-align: left;
  font-weight: 700;
  color: #dc2e30;
}
#recruit02 .section_inner .job_table table td {
  padding: 24px 2%;
  line-height: 1.7em;
}
#recruit02 .section_inner .more_btn {
  margin: 56px auto 0;
  width: 256px;
}
#recruit02 .section_inner .more_btn a {
  display: block;
  border: solid 2px #dc2e30;
  background-color: #dc2e30;
  color: #fff;
  padding: 14px 2px 16px;
  border-radius: 34px;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
}
#recruit02 .section_inner .more_btn a:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  background-image: url(../images/link_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: all .2s ease;
}
#recruit02 .section_inner .more_btn a:hover {
  background-color: #f8dcdc;
  color: #dc2e30;
}
#recruit02 .section_inner .more_btn a:hover:before {
  background-image: url(../images/link_arrow_red.svg);
}
/*採用応募フォーム*/
#entry_form {
  width: 100%;
  background-color: #f5f5f5;
  padding-bottom: 156px;
}
#entry_form .page_title_form {
  padding: 136px 0 64px;
}
#entry_form .page_title_form h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #dc2e30;
}
#entry_form .page_title_form h2 span {
  display: block;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  margin-top: 24px;
}
#entry_form .section_inner {
  width: auto;
  max-width: 1088px;
  background-color: #fff;
  margin: 0 auto;
  padding: 96px 0;
}
#entry_form .section_inner .contact_table table {
  width: 86%;
  margin: 0 auto;
}
#entry_form .section_inner .contact_table table tr {
}
#entry_form .section_inner .contact_table table th {
  font-weight: 700;
  display: block;
  text-align: left;
  padding: 8px 10px;
}
#entry_form .section_inner .contact_table table th span {
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #dc2e30;
  color: #fff;
  padding: 2px 6px 3px;
  border-radius: 4px;
  margin-left: 10px;
}
#entry_form .section_inner .contact_table table td {
  display: block;
  padding: 0 8px 28px;
}
#entry_form .section_inner .contact_table table td .wpcf7-text,
#entry_form .section_inner .contact_table table td .wpcf7-textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  border: solid 1px #616060;
  border-radius: 6px;
}
#entry_form .section_inner .contact_table table td .textL {
  padding: 12px 1.5%;
  width: 97%;
}
#entry_form .section_inner .contact_table table td .textS {
  padding: 12px 1.5%;
  width: 100px;
}
#entry_form .section_inner .contact_table table td .unit {
  font-weight: 600;
  margin: 0 8px;
}
#entry_form .section_inner .contact_table table td .zip {
}
#entry_form .section_inner .contact_table table td .address {
  margin-top: 12px;
}
#entry_form .section_inner .contact_table table td .selectS {
  padding: 12px 1.5%;
  width: 100px;
  background-color: #fff;
  border: solid 1px #616060;
  border-radius: 6px;
}

#entry_form .section_inner .contact_table .pp_info {
  text-align: center;
  margin-top: 24px;
}
#entry_form .section_inner .contact_table .pp_info a {
  font-weight: 400;
  text-decoration: none;
  padding-right: 24px;
  position: relative;
}
#entry_form .section_inner .contact_table .pp_info a:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/link_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 4px;
  top: 50%;
  margin-top: -7px;
}
#entry_form .section_inner .contact_table .submit_btn {
  width: 300px;
  margin: 56px auto 0;
  position: relative;
}
#entry_form .section_inner .contact_table .submit_btn .wpcf7-submit {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  display: block;
  width: 100%;
  border: solid 2px #dc2f30;
  background-color: #dc2f30;
  color: #ffff;
  font-size: 1rem;
  letter-spacing: .1em;
  font-weight: 700;
  padding: 20px 14px;
  border-radius: 36px;
  text-align: center;
  cursor: pointer;
  transition: all .2s ease;
}
#entry_form .section_inner .contact_table .submit_btn .wpcf7-submit:hover {
  background-color: #f8dcdc;
  color: #dc2f30;
}
#entry_form .section_inner .contact_table .submit_btn:before {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 14px;
  margin-top: -7px;
  background-image: url(../images/link_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
#entry_form .section_inner .contact_table .submit_btn:hover:before {
  background-image: url(../images/link_arrow_red.svg);
}
/*送信完了ページ*/
#thanks01 {
  padding: 64px 0 86px; 
}
#thanks01 .section_inner {
  width: 76%;
  max-width: 860px;
  padding: 46px 20px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
}
#thanks01 .section_inner > p {
  text-align: center;
  line-height: 1.9em;
  font-weight: 500;
}
#thanks01 .section_inner .return_home {
  margin-top: 16px;
  text-align: center;
}
#thanks01 .section_inner .return_home a {
  text-align: center;
}
/*プライバシーポリシー*/
#privacy01 {
  padding: 64px 0;
}
#privacy01 .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 0 1% 64px;
  margin: 0 auto;
}
#privacy01 .section_inner > h2 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.7em;
  margin-bottom: 24px;
}
#privacy01 .section_inner > h3 {
  font-size: 1.125rem;
  font-weight: 700;
    line-height: 1.7em;
  margin-bottom: 24px;
}
#privacy01 .section_inner > p {
  margin-bottom: 36px;
  line-height: 1.7em;
}
#privacy01 .section_inner > ul {
  width: 97%;
  margin: 0 auto 36px;
}
#privacy01 .section_inner > ul li {
  font-size: 1rem;
  line-height: 1.7em;
  font-weight: 500;
  list-style: decimal;
  margin-bottom: 14px;
}
/**********************************
404
**********************************/
.not_found .page_title {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.not_found .page_title .page_title_wrap {
  width: 100%;
  padding: 120px 0;
  background-image: url(../images/subpage_kv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.not_found .page_title .page_title_wrap h2 {
  width: 360px;
  margin: 0 auto;
  padding: 8px 0 18px;
  text-align: center;
  color: #ffff;
  background-color: #dc2e30;
  font-weight: 500;
}
.not_found .page_title .page_title_wrap h2 span {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 12px;
}
#not_found {
  padding: 64px 0;
}
#not_found .section_inner {
  width: auto;
  max-width: 1088px;
  padding: 0 1% 64px;
  margin: 0 auto;
}
#not_found .section_inner .not_found_info {
  font-size: 1.25rem;
  text-align: center;
  line-height: 2em;
}
/**********************************
Footer
**********************************/
footer {
  width: 100%;
  padding: 96px 0;
  background-color: #2a3238;
}
footer .footer_inner {
  width: auto;
  max-width: 1088px;
  padding: 0 1%;
  margin: 0 auto;
}
footer .footer_inner .footer_info {
  padding-bottom: 18px; 
  border-bottom: solid 1px #fff;
}
footer .footer_inner .footer_info h1 {
  width: 228px;
}
footer .footer_inner .footer_info h1 img {
  width: 100%;
  height: auto;
}
footer .footer_inner .footer_info .address {
  margin-top: 18px;
  font-size: 0.875rem;
  color: #ffff;
}
footer .sns_icons {
  width: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 18px;
}
footer .sns_icons .icon {
  width: 38px;
  margin-right: 20px;
}
footer .sns_icons .icon img {
  width: 100%;
  height: auto;
}
footer .copyright {
  margin: 18px auto 0;
  width: auto;
  max-width: 1088px;
  padding: 0 1%;
  text-align: right;
  font-size: 0.75rem;
  color: #fff;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.sp_only {
  display: none;
}